Earth Engine Basic Example


In [4]:
import ee

ee.Initialize()

test_geometry = {
  'type': 'Feature',
  'properties': {},
  'geometry': {
    'type': 'Polygon',
    'coordinates': [
      [
        [
          -122.23663330078124,
          37.84883250647402
        ],
        [
          -122.14874267578125,
          37.90736658145496
        ],
        [
          -122.0416259765625,
          37.85316995894978
        ],
        [
          -122.10205078125,
          37.79893346559687
        ],
        [
          -122.23663330078124,
          37.84883250647402
        ]
      ]
    ]
  }
}

Function definitions:


In [9]:
def list_images():
    images = []
    collection = ee.ImageCollection('MODIS/MCD43A4_NDVI')
    value = collection.toList(1000)
    for item in value.getInfo():
        images.append(item)
    return images

In [14]:
def mean_example():
    feature = ee.Feature(test_geometry)
    raster = ee.Image('MODIS/MCD43A4_NDVI/MCD43A4_005_2015_08_21')
    stats = raster.reduceRegion('mean', feature.geometry())
    print stats.getInfo()
    stats = raster.reduceRegion('min', feature.geometry())
    print stats.getInfo()
    stats = raster.reduceRegion('max', feature.geometry())
    print stats.getInfo()

Run this code:


In [15]:
print list_images()


[{u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2000_02_18', u'properties': {u'system:time_end': 952214400000, u'system:time_start': 950832000000, u'system:index': u'MCD43A4_005_2000_02_18'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2000_02_26', u'properties': {u'system:time_end': 952905600000, u'system:time_start': 951523200000, u'system:index': u'MCD43A4_005_2000_02_26'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2000_03_05', u'properties': {u'system:time_end': 953596800000, u'system:time_start': 952214400000, u'system:index': u'MCD43A4_005_2000_03_05'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2000_03_13', u'properties': {u'system:time_end': 954288000000, u'system:time_start': 952905600000, u'system:index': u'MCD43A4_005_2000_03_13'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2000_03_21', u'properties': {u'system:time_end': 954979200000, u'system:time_start': 953596800000, u'system:index': u'MCD43A4_005_2000_03_21'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2000_03_29', u'properties': {u'system:time_end': 955670400000, u'system:time_start': 954288000000, u'system:index': u'MCD43A4_005_2000_03_29'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2000_04_06', u'properties': {u'system:time_end': 956361600000, u'system:time_start': 954979200000, u'system:index': u'MCD43A4_005_2000_04_06'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2000_04_14', u'properties': {u'system:time_end': 957052800000, u'system:time_start': 955670400000, u'system:index': u'MCD43A4_005_2000_04_14'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2000_04_22', u'properties': {u'system:time_end': 957744000000, u'system:time_start': 956361600000, u'system:index': u'MCD43A4_005_2000_04_22'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2000_04_30', u'properties': {u'system:time_end': 958435200000, u'system:time_start': 957052800000, u'system:index': u'MCD43A4_005_2000_04_30'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2000_05_08', u'properties': {u'system:time_end': 959126400000, u'system:time_start': 957744000000, u'system:index': u'MCD43A4_005_2000_05_08'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2000_05_16', u'properties': {u'system:time_end': 959817600000, u'system:time_start': 958435200000, u'system:index': u'MCD43A4_005_2000_05_16'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2000_05_24', u'properties': {u'system:time_end': 960508800000, u'system:time_start': 959126400000, u'system:index': u'MCD43A4_005_2000_05_24'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2000_06_01', u'properties': {u'system:time_end': 961200000000, u'system:time_start': 959817600000, u'system:index': u'MCD43A4_005_2000_06_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2000_06_09', u'properties': {u'system:time_end': 961891200000, u'system:time_start': 960508800000, u'system:index': u'MCD43A4_005_2000_06_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2000_06_17', u'properties': {u'system:time_end': 962582400000, u'system:time_start': 961200000000, u'system:index': u'MCD43A4_005_2000_06_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2000_06_25', u'properties': {u'system:time_end': 963273600000, u'system:time_start': 961891200000, u'system:index': u'MCD43A4_005_2000_06_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2000_07_03', u'properties': {u'system:time_end': 963964800000, u'system:time_start': 962582400000, u'system:index': u'MCD43A4_005_2000_07_03'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2000_07_11', u'properties': {u'system:time_end': 964656000000, u'system:time_start': 963273600000, u'system:index': u'MCD43A4_005_2000_07_11'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2000_07_19', u'properties': {u'system:time_end': 965347200000, u'system:time_start': 963964800000, u'system:index': u'MCD43A4_005_2000_07_19'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2000_07_27', u'properties': {u'system:time_end': 966038400000, u'system:time_start': 964656000000, u'system:index': u'MCD43A4_005_2000_07_27'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2000_08_04', u'properties': {u'system:time_end': 966729600000, u'system:time_start': 965347200000, u'system:index': u'MCD43A4_005_2000_08_04'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2000_08_12', u'properties': {u'system:time_end': 967420800000, u'system:time_start': 966038400000, u'system:index': u'MCD43A4_005_2000_08_12'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2000_08_20', u'properties': {u'system:time_end': 968112000000, u'system:time_start': 966729600000, u'system:index': u'MCD43A4_005_2000_08_20'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2000_08_28', u'properties': {u'system:time_end': 968803200000, u'system:time_start': 967420800000, u'system:index': u'MCD43A4_005_2000_08_28'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2000_09_05', u'properties': {u'system:time_end': 969494400000, u'system:time_start': 968112000000, u'system:index': u'MCD43A4_005_2000_09_05'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2000_09_13', u'properties': {u'system:time_end': 970185600000, u'system:time_start': 968803200000, u'system:index': u'MCD43A4_005_2000_09_13'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2000_09_21', u'properties': {u'system:time_end': 970876800000, u'system:time_start': 969494400000, u'system:index': u'MCD43A4_005_2000_09_21'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2000_09_29', u'properties': {u'system:time_end': 971568000000, u'system:time_start': 970185600000, u'system:index': u'MCD43A4_005_2000_09_29'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2000_10_07', u'properties': {u'system:time_end': 972259200000, u'system:time_start': 970876800000, u'system:index': u'MCD43A4_005_2000_10_07'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2000_10_15', u'properties': {u'system:time_end': 972950400000, u'system:time_start': 971568000000, u'system:index': u'MCD43A4_005_2000_10_15'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2000_10_23', u'properties': {u'system:time_end': 973641600000, u'system:time_start': 972259200000, u'system:index': u'MCD43A4_005_2000_10_23'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2000_10_31', u'properties': {u'system:time_end': 974332800000, u'system:time_start': 972950400000, u'system:index': u'MCD43A4_005_2000_10_31'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2000_11_08', u'properties': {u'system:time_end': 975024000000, u'system:time_start': 973641600000, u'system:index': u'MCD43A4_005_2000_11_08'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2000_11_16', u'properties': {u'system:time_end': 975715200000, u'system:time_start': 974332800000, u'system:index': u'MCD43A4_005_2000_11_16'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2000_11_24', u'properties': {u'system:time_end': 976406400000, u'system:time_start': 975024000000, u'system:index': u'MCD43A4_005_2000_11_24'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2000_12_02', u'properties': {u'system:time_end': 977097600000, u'system:time_start': 975715200000, u'system:index': u'MCD43A4_005_2000_12_02'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2000_12_10', u'properties': {u'system:time_end': 977788800000, u'system:time_start': 976406400000, u'system:index': u'MCD43A4_005_2000_12_10'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2000_12_18', u'properties': {u'system:time_end': 978480000000, u'system:time_start': 977097600000, u'system:index': u'MCD43A4_005_2000_12_18'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2000_12_26', u'properties': {u'system:time_end': 979171200000, u'system:time_start': 977788800000, u'system:index': u'MCD43A4_005_2000_12_26'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_01_01', u'properties': {u'system:time_end': 979689600000, u'system:time_start': 978307200000, u'system:index': u'MCD43A4_005_2001_01_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_01_09', u'properties': {u'system:time_end': 980380800000, u'system:time_start': 978998400000, u'system:index': u'MCD43A4_005_2001_01_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_01_17', u'properties': {u'system:time_end': 981072000000, u'system:time_start': 979689600000, u'system:index': u'MCD43A4_005_2001_01_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_01_25', u'properties': {u'system:time_end': 981763200000, u'system:time_start': 980380800000, u'system:index': u'MCD43A4_005_2001_01_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_02_02', u'properties': {u'system:time_end': 982454400000, u'system:time_start': 981072000000, u'system:index': u'MCD43A4_005_2001_02_02'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_02_10', u'properties': {u'system:time_end': 983145600000, u'system:time_start': 981763200000, u'system:index': u'MCD43A4_005_2001_02_10'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_02_18', u'properties': {u'system:time_end': 983836800000, u'system:time_start': 982454400000, u'system:index': u'MCD43A4_005_2001_02_18'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_02_26', u'properties': {u'system:time_end': 984528000000, u'system:time_start': 983145600000, u'system:index': u'MCD43A4_005_2001_02_26'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_03_06', u'properties': {u'system:time_end': 985219200000, u'system:time_start': 983836800000, u'system:index': u'MCD43A4_005_2001_03_06'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_03_14', u'properties': {u'system:time_end': 985910400000, u'system:time_start': 984528000000, u'system:index': u'MCD43A4_005_2001_03_14'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_03_22', u'properties': {u'system:time_end': 986601600000, u'system:time_start': 985219200000, u'system:index': u'MCD43A4_005_2001_03_22'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_03_30', u'properties': {u'system:time_end': 987292800000, u'system:time_start': 985910400000, u'system:index': u'MCD43A4_005_2001_03_30'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_04_07', u'properties': {u'system:time_end': 987984000000, u'system:time_start': 986601600000, u'system:index': u'MCD43A4_005_2001_04_07'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_04_15', u'properties': {u'system:time_end': 988675200000, u'system:time_start': 987292800000, u'system:index': u'MCD43A4_005_2001_04_15'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_04_23', u'properties': {u'system:time_end': 989366400000, u'system:time_start': 987984000000, u'system:index': u'MCD43A4_005_2001_04_23'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_05_01', u'properties': {u'system:time_end': 990057600000, u'system:time_start': 988675200000, u'system:index': u'MCD43A4_005_2001_05_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_05_09', u'properties': {u'system:time_end': 990748800000, u'system:time_start': 989366400000, u'system:index': u'MCD43A4_005_2001_05_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_05_17', u'properties': {u'system:time_end': 991440000000, u'system:time_start': 990057600000, u'system:index': u'MCD43A4_005_2001_05_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_05_25', u'properties': {u'system:time_end': 992131200000, u'system:time_start': 990748800000, u'system:index': u'MCD43A4_005_2001_05_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_06_02', u'properties': {u'system:time_end': 992822400000, u'system:time_start': 991440000000, u'system:index': u'MCD43A4_005_2001_06_02'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_06_10', u'properties': {u'system:time_end': 993513600000, u'system:time_start': 992131200000, u'system:index': u'MCD43A4_005_2001_06_10'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_06_18', u'properties': {u'system:time_end': 994204800000, u'system:time_start': 992822400000, u'system:index': u'MCD43A4_005_2001_06_18'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_06_26', u'properties': {u'system:time_end': 994896000000, u'system:time_start': 993513600000, u'system:index': u'MCD43A4_005_2001_06_26'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_07_04', u'properties': {u'system:time_end': 995587200000, u'system:time_start': 994204800000, u'system:index': u'MCD43A4_005_2001_07_04'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_07_12', u'properties': {u'system:time_end': 996278400000, u'system:time_start': 994896000000, u'system:index': u'MCD43A4_005_2001_07_12'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_07_20', u'properties': {u'system:time_end': 996969600000, u'system:time_start': 995587200000, u'system:index': u'MCD43A4_005_2001_07_20'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_07_28', u'properties': {u'system:time_end': 997660800000, u'system:time_start': 996278400000, u'system:index': u'MCD43A4_005_2001_07_28'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_08_05', u'properties': {u'system:time_end': 998352000000, u'system:time_start': 996969600000, u'system:index': u'MCD43A4_005_2001_08_05'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_08_13', u'properties': {u'system:time_end': 999043200000, u'system:time_start': 997660800000, u'system:index': u'MCD43A4_005_2001_08_13'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_08_21', u'properties': {u'system:time_end': 999734400000, u'system:time_start': 998352000000, u'system:index': u'MCD43A4_005_2001_08_21'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_08_29', u'properties': {u'system:time_end': 1000425600000, u'system:time_start': 999043200000, u'system:index': u'MCD43A4_005_2001_08_29'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_09_06', u'properties': {u'system:time_end': 1001116800000, u'system:time_start': 999734400000, u'system:index': u'MCD43A4_005_2001_09_06'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_09_14', u'properties': {u'system:time_end': 1001808000000, u'system:time_start': 1000425600000, u'system:index': u'MCD43A4_005_2001_09_14'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_09_22', u'properties': {u'system:time_end': 1002499200000, u'system:time_start': 1001116800000, u'system:index': u'MCD43A4_005_2001_09_22'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_09_30', u'properties': {u'system:time_end': 1003190400000, u'system:time_start': 1001808000000, u'system:index': u'MCD43A4_005_2001_09_30'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_10_08', u'properties': {u'system:time_end': 1003881600000, u'system:time_start': 1002499200000, u'system:index': u'MCD43A4_005_2001_10_08'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_10_16', u'properties': {u'system:time_end': 1004572800000, u'system:time_start': 1003190400000, u'system:index': u'MCD43A4_005_2001_10_16'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_10_24', u'properties': {u'system:time_end': 1005264000000, u'system:time_start': 1003881600000, u'system:index': u'MCD43A4_005_2001_10_24'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_11_01', u'properties': {u'system:time_end': 1005955200000, u'system:time_start': 1004572800000, u'system:index': u'MCD43A4_005_2001_11_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_11_09', u'properties': {u'system:time_end': 1006646400000, u'system:time_start': 1005264000000, u'system:index': u'MCD43A4_005_2001_11_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_11_17', u'properties': {u'system:time_end': 1007337600000, u'system:time_start': 1005955200000, u'system:index': u'MCD43A4_005_2001_11_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_11_25', u'properties': {u'system:time_end': 1008028800000, u'system:time_start': 1006646400000, u'system:index': u'MCD43A4_005_2001_11_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_12_03', u'properties': {u'system:time_end': 1008720000000, u'system:time_start': 1007337600000, u'system:index': u'MCD43A4_005_2001_12_03'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_12_11', u'properties': {u'system:time_end': 1009411200000, u'system:time_start': 1008028800000, u'system:index': u'MCD43A4_005_2001_12_11'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_12_19', u'properties': {u'system:time_end': 1010102400000, u'system:time_start': 1008720000000, u'system:index': u'MCD43A4_005_2001_12_19'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2001_12_27', u'properties': {u'system:time_end': 1010793600000, u'system:time_start': 1009411200000, u'system:index': u'MCD43A4_005_2001_12_27'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_01_01', u'properties': {u'system:time_end': 1011225600000, u'system:time_start': 1009843200000, u'system:index': u'MCD43A4_005_2002_01_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_01_09', u'properties': {u'system:time_end': 1011916800000, u'system:time_start': 1010534400000, u'system:index': u'MCD43A4_005_2002_01_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_01_17', u'properties': {u'system:time_end': 1012608000000, u'system:time_start': 1011225600000, u'system:index': u'MCD43A4_005_2002_01_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_01_25', u'properties': {u'system:time_end': 1013299200000, u'system:time_start': 1011916800000, u'system:index': u'MCD43A4_005_2002_01_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_02_02', u'properties': {u'system:time_end': 1013990400000, u'system:time_start': 1012608000000, u'system:index': u'MCD43A4_005_2002_02_02'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_02_10', u'properties': {u'system:time_end': 1014681600000, u'system:time_start': 1013299200000, u'system:index': u'MCD43A4_005_2002_02_10'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_02_18', u'properties': {u'system:time_end': 1015372800000, u'system:time_start': 1013990400000, u'system:index': u'MCD43A4_005_2002_02_18'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_02_26', u'properties': {u'system:time_end': 1016064000000, u'system:time_start': 1014681600000, u'system:index': u'MCD43A4_005_2002_02_26'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_03_06', u'properties': {u'system:time_end': 1016755200000, u'system:time_start': 1015372800000, u'system:index': u'MCD43A4_005_2002_03_06'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_03_14', u'properties': {u'system:time_end': 1017446400000, u'system:time_start': 1016064000000, u'system:index': u'MCD43A4_005_2002_03_14'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_03_22', u'properties': {u'system:time_end': 1018137600000, u'system:time_start': 1016755200000, u'system:index': u'MCD43A4_005_2002_03_22'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_03_30', u'properties': {u'system:time_end': 1018828800000, u'system:time_start': 1017446400000, u'system:index': u'MCD43A4_005_2002_03_30'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_04_07', u'properties': {u'system:time_end': 1019520000000, u'system:time_start': 1018137600000, u'system:index': u'MCD43A4_005_2002_04_07'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_04_15', u'properties': {u'system:time_end': 1020211200000, u'system:time_start': 1018828800000, u'system:index': u'MCD43A4_005_2002_04_15'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_04_23', u'properties': {u'system:time_end': 1020902400000, u'system:time_start': 1019520000000, u'system:index': u'MCD43A4_005_2002_04_23'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_05_01', u'properties': {u'system:time_end': 1021593600000, u'system:time_start': 1020211200000, u'system:index': u'MCD43A4_005_2002_05_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_05_09', u'properties': {u'system:time_end': 1022284800000, u'system:time_start': 1020902400000, u'system:index': u'MCD43A4_005_2002_05_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_05_17', u'properties': {u'system:time_end': 1022976000000, u'system:time_start': 1021593600000, u'system:index': u'MCD43A4_005_2002_05_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_05_25', u'properties': {u'system:time_end': 1023667200000, u'system:time_start': 1022284800000, u'system:index': u'MCD43A4_005_2002_05_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_06_02', u'properties': {u'system:time_end': 1024358400000, u'system:time_start': 1022976000000, u'system:index': u'MCD43A4_005_2002_06_02'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_06_10', u'properties': {u'system:time_end': 1025049600000, u'system:time_start': 1023667200000, u'system:index': u'MCD43A4_005_2002_06_10'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_06_18', u'properties': {u'system:time_end': 1025740800000, u'system:time_start': 1024358400000, u'system:index': u'MCD43A4_005_2002_06_18'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_06_26', u'properties': {u'system:time_end': 1026432000000, u'system:time_start': 1025049600000, u'system:index': u'MCD43A4_005_2002_06_26'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_07_04', u'properties': {u'system:time_end': 1027123200000, u'system:time_start': 1025740800000, u'system:index': u'MCD43A4_005_2002_07_04'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_07_12', u'properties': {u'system:time_end': 1027814400000, u'system:time_start': 1026432000000, u'system:index': u'MCD43A4_005_2002_07_12'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_07_20', u'properties': {u'system:time_end': 1028505600000, u'system:time_start': 1027123200000, u'system:index': u'MCD43A4_005_2002_07_20'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_07_28', u'properties': {u'system:time_end': 1029196800000, u'system:time_start': 1027814400000, u'system:index': u'MCD43A4_005_2002_07_28'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_08_05', u'properties': {u'system:time_end': 1029888000000, u'system:time_start': 1028505600000, u'system:index': u'MCD43A4_005_2002_08_05'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_08_13', u'properties': {u'system:time_end': 1030579200000, u'system:time_start': 1029196800000, u'system:index': u'MCD43A4_005_2002_08_13'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_08_21', u'properties': {u'system:time_end': 1031270400000, u'system:time_start': 1029888000000, u'system:index': u'MCD43A4_005_2002_08_21'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_08_29', u'properties': {u'system:time_end': 1031961600000, u'system:time_start': 1030579200000, u'system:index': u'MCD43A4_005_2002_08_29'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_09_06', u'properties': {u'system:time_end': 1032652800000, u'system:time_start': 1031270400000, u'system:index': u'MCD43A4_005_2002_09_06'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_09_14', u'properties': {u'system:time_end': 1033344000000, u'system:time_start': 1031961600000, u'system:index': u'MCD43A4_005_2002_09_14'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_09_22', u'properties': {u'system:time_end': 1034035200000, u'system:time_start': 1032652800000, u'system:index': u'MCD43A4_005_2002_09_22'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_09_30', u'properties': {u'system:time_end': 1034726400000, u'system:time_start': 1033344000000, u'system:index': u'MCD43A4_005_2002_09_30'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_10_08', u'properties': {u'system:time_end': 1035417600000, u'system:time_start': 1034035200000, u'system:index': u'MCD43A4_005_2002_10_08'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_10_16', u'properties': {u'system:time_end': 1036108800000, u'system:time_start': 1034726400000, u'system:index': u'MCD43A4_005_2002_10_16'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_10_24', u'properties': {u'system:time_end': 1036800000000, u'system:time_start': 1035417600000, u'system:index': u'MCD43A4_005_2002_10_24'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_11_01', u'properties': {u'system:time_end': 1037491200000, u'system:time_start': 1036108800000, u'system:index': u'MCD43A4_005_2002_11_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_11_09', u'properties': {u'system:time_end': 1038182400000, u'system:time_start': 1036800000000, u'system:index': u'MCD43A4_005_2002_11_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_11_17', u'properties': {u'system:time_end': 1038873600000, u'system:time_start': 1037491200000, u'system:index': u'MCD43A4_005_2002_11_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_11_25', u'properties': {u'system:time_end': 1039564800000, u'system:time_start': 1038182400000, u'system:index': u'MCD43A4_005_2002_11_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_12_03', u'properties': {u'system:time_end': 1040256000000, u'system:time_start': 1038873600000, u'system:index': u'MCD43A4_005_2002_12_03'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_12_11', u'properties': {u'system:time_end': 1040947200000, u'system:time_start': 1039564800000, u'system:index': u'MCD43A4_005_2002_12_11'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_12_19', u'properties': {u'system:time_end': 1041638400000, u'system:time_start': 1040256000000, u'system:index': u'MCD43A4_005_2002_12_19'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2002_12_27', u'properties': {u'system:time_end': 1042329600000, u'system:time_start': 1040947200000, u'system:index': u'MCD43A4_005_2002_12_27'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_01_01', u'properties': {u'system:time_end': 1042761600000, u'system:time_start': 1041379200000, u'system:index': u'MCD43A4_005_2003_01_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_01_09', u'properties': {u'system:time_end': 1043452800000, u'system:time_start': 1042070400000, u'system:index': u'MCD43A4_005_2003_01_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_01_17', u'properties': {u'system:time_end': 1044144000000, u'system:time_start': 1042761600000, u'system:index': u'MCD43A4_005_2003_01_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_01_25', u'properties': {u'system:time_end': 1044835200000, u'system:time_start': 1043452800000, u'system:index': u'MCD43A4_005_2003_01_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_02_02', u'properties': {u'system:time_end': 1045526400000, u'system:time_start': 1044144000000, u'system:index': u'MCD43A4_005_2003_02_02'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_02_10', u'properties': {u'system:time_end': 1046217600000, u'system:time_start': 1044835200000, u'system:index': u'MCD43A4_005_2003_02_10'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_02_18', u'properties': {u'system:time_end': 1046908800000, u'system:time_start': 1045526400000, u'system:index': u'MCD43A4_005_2003_02_18'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_02_26', u'properties': {u'system:time_end': 1047600000000, u'system:time_start': 1046217600000, u'system:index': u'MCD43A4_005_2003_02_26'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_03_06', u'properties': {u'system:time_end': 1048291200000, u'system:time_start': 1046908800000, u'system:index': u'MCD43A4_005_2003_03_06'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_03_14', u'properties': {u'system:time_end': 1048982400000, u'system:time_start': 1047600000000, u'system:index': u'MCD43A4_005_2003_03_14'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_03_22', u'properties': {u'system:time_end': 1049673600000, u'system:time_start': 1048291200000, u'system:index': u'MCD43A4_005_2003_03_22'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_03_30', u'properties': {u'system:time_end': 1050364800000, u'system:time_start': 1048982400000, u'system:index': u'MCD43A4_005_2003_03_30'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_04_07', u'properties': {u'system:time_end': 1051056000000, u'system:time_start': 1049673600000, u'system:index': u'MCD43A4_005_2003_04_07'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_04_15', u'properties': {u'system:time_end': 1051747200000, u'system:time_start': 1050364800000, u'system:index': u'MCD43A4_005_2003_04_15'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_04_23', u'properties': {u'system:time_end': 1052438400000, u'system:time_start': 1051056000000, u'system:index': u'MCD43A4_005_2003_04_23'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_05_01', u'properties': {u'system:time_end': 1053129600000, u'system:time_start': 1051747200000, u'system:index': u'MCD43A4_005_2003_05_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_05_09', u'properties': {u'system:time_end': 1053820800000, u'system:time_start': 1052438400000, u'system:index': u'MCD43A4_005_2003_05_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_05_17', u'properties': {u'system:time_end': 1054512000000, u'system:time_start': 1053129600000, u'system:index': u'MCD43A4_005_2003_05_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_05_25', u'properties': {u'system:time_end': 1055203200000, u'system:time_start': 1053820800000, u'system:index': u'MCD43A4_005_2003_05_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_06_02', u'properties': {u'system:time_end': 1055894400000, u'system:time_start': 1054512000000, u'system:index': u'MCD43A4_005_2003_06_02'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_06_10', u'properties': {u'system:time_end': 1056585600000, u'system:time_start': 1055203200000, u'system:index': u'MCD43A4_005_2003_06_10'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_06_18', u'properties': {u'system:time_end': 1057276800000, u'system:time_start': 1055894400000, u'system:index': u'MCD43A4_005_2003_06_18'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_06_26', u'properties': {u'system:time_end': 1057968000000, u'system:time_start': 1056585600000, u'system:index': u'MCD43A4_005_2003_06_26'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_07_04', u'properties': {u'system:time_end': 1058659200000, u'system:time_start': 1057276800000, u'system:index': u'MCD43A4_005_2003_07_04'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_07_12', u'properties': {u'system:time_end': 1059350400000, u'system:time_start': 1057968000000, u'system:index': u'MCD43A4_005_2003_07_12'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_07_20', u'properties': {u'system:time_end': 1060041600000, u'system:time_start': 1058659200000, u'system:index': u'MCD43A4_005_2003_07_20'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_07_28', u'properties': {u'system:time_end': 1060732800000, u'system:time_start': 1059350400000, u'system:index': u'MCD43A4_005_2003_07_28'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_08_05', u'properties': {u'system:time_end': 1061424000000, u'system:time_start': 1060041600000, u'system:index': u'MCD43A4_005_2003_08_05'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_08_13', u'properties': {u'system:time_end': 1062115200000, u'system:time_start': 1060732800000, u'system:index': u'MCD43A4_005_2003_08_13'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_08_21', u'properties': {u'system:time_end': 1062806400000, u'system:time_start': 1061424000000, u'system:index': u'MCD43A4_005_2003_08_21'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_08_29', u'properties': {u'system:time_end': 1063497600000, u'system:time_start': 1062115200000, u'system:index': u'MCD43A4_005_2003_08_29'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_09_06', u'properties': {u'system:time_end': 1064188800000, u'system:time_start': 1062806400000, u'system:index': u'MCD43A4_005_2003_09_06'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_09_14', u'properties': {u'system:time_end': 1064880000000, u'system:time_start': 1063497600000, u'system:index': u'MCD43A4_005_2003_09_14'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_09_22', u'properties': {u'system:time_end': 1065571200000, u'system:time_start': 1064188800000, u'system:index': u'MCD43A4_005_2003_09_22'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_09_30', u'properties': {u'system:time_end': 1066262400000, u'system:time_start': 1064880000000, u'system:index': u'MCD43A4_005_2003_09_30'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_10_08', u'properties': {u'system:time_end': 1066953600000, u'system:time_start': 1065571200000, u'system:index': u'MCD43A4_005_2003_10_08'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_10_16', u'properties': {u'system:time_end': 1067644800000, u'system:time_start': 1066262400000, u'system:index': u'MCD43A4_005_2003_10_16'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_10_24', u'properties': {u'system:time_end': 1068336000000, u'system:time_start': 1066953600000, u'system:index': u'MCD43A4_005_2003_10_24'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_11_01', u'properties': {u'system:time_end': 1069027200000, u'system:time_start': 1067644800000, u'system:index': u'MCD43A4_005_2003_11_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_11_09', u'properties': {u'system:time_end': 1069718400000, u'system:time_start': 1068336000000, u'system:index': u'MCD43A4_005_2003_11_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_11_17', u'properties': {u'system:time_end': 1070409600000, u'system:time_start': 1069027200000, u'system:index': u'MCD43A4_005_2003_11_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_11_25', u'properties': {u'system:time_end': 1071100800000, u'system:time_start': 1069718400000, u'system:index': u'MCD43A4_005_2003_11_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_12_03', u'properties': {u'system:time_end': 1071792000000, u'system:time_start': 1070409600000, u'system:index': u'MCD43A4_005_2003_12_03'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_12_11', u'properties': {u'system:time_end': 1072483200000, u'system:time_start': 1071100800000, u'system:index': u'MCD43A4_005_2003_12_11'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_12_19', u'properties': {u'system:time_end': 1073174400000, u'system:time_start': 1071792000000, u'system:index': u'MCD43A4_005_2003_12_19'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2003_12_27', u'properties': {u'system:time_end': 1073865600000, u'system:time_start': 1072483200000, u'system:index': u'MCD43A4_005_2003_12_27'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_01_01', u'properties': {u'system:time_end': 1074297600000, u'system:time_start': 1072915200000, u'system:index': u'MCD43A4_005_2004_01_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_01_09', u'properties': {u'system:time_end': 1074988800000, u'system:time_start': 1073606400000, u'system:index': u'MCD43A4_005_2004_01_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_01_17', u'properties': {u'system:time_end': 1075680000000, u'system:time_start': 1074297600000, u'system:index': u'MCD43A4_005_2004_01_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_01_25', u'properties': {u'system:time_end': 1076371200000, u'system:time_start': 1074988800000, u'system:index': u'MCD43A4_005_2004_01_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_02_02', u'properties': {u'system:time_end': 1077062400000, u'system:time_start': 1075680000000, u'system:index': u'MCD43A4_005_2004_02_02'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_02_10', u'properties': {u'system:time_end': 1077753600000, u'system:time_start': 1076371200000, u'system:index': u'MCD43A4_005_2004_02_10'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_02_18', u'properties': {u'system:time_end': 1078444800000, u'system:time_start': 1077062400000, u'system:index': u'MCD43A4_005_2004_02_18'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_02_26', u'properties': {u'system:time_end': 1079136000000, u'system:time_start': 1077753600000, u'system:index': u'MCD43A4_005_2004_02_26'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_03_05', u'properties': {u'system:time_end': 1079827200000, u'system:time_start': 1078444800000, u'system:index': u'MCD43A4_005_2004_03_05'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_03_13', u'properties': {u'system:time_end': 1080518400000, u'system:time_start': 1079136000000, u'system:index': u'MCD43A4_005_2004_03_13'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_03_21', u'properties': {u'system:time_end': 1081209600000, u'system:time_start': 1079827200000, u'system:index': u'MCD43A4_005_2004_03_21'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_03_29', u'properties': {u'system:time_end': 1081900800000, u'system:time_start': 1080518400000, u'system:index': u'MCD43A4_005_2004_03_29'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_04_06', u'properties': {u'system:time_end': 1082592000000, u'system:time_start': 1081209600000, u'system:index': u'MCD43A4_005_2004_04_06'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_04_14', u'properties': {u'system:time_end': 1083283200000, u'system:time_start': 1081900800000, u'system:index': u'MCD43A4_005_2004_04_14'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_04_22', u'properties': {u'system:time_end': 1083974400000, u'system:time_start': 1082592000000, u'system:index': u'MCD43A4_005_2004_04_22'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_04_30', u'properties': {u'system:time_end': 1084665600000, u'system:time_start': 1083283200000, u'system:index': u'MCD43A4_005_2004_04_30'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_05_08', u'properties': {u'system:time_end': 1085356800000, u'system:time_start': 1083974400000, u'system:index': u'MCD43A4_005_2004_05_08'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_05_16', u'properties': {u'system:time_end': 1086048000000, u'system:time_start': 1084665600000, u'system:index': u'MCD43A4_005_2004_05_16'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_05_24', u'properties': {u'system:time_end': 1086739200000, u'system:time_start': 1085356800000, u'system:index': u'MCD43A4_005_2004_05_24'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_06_01', u'properties': {u'system:time_end': 1087430400000, u'system:time_start': 1086048000000, u'system:index': u'MCD43A4_005_2004_06_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_06_09', u'properties': {u'system:time_end': 1088121600000, u'system:time_start': 1086739200000, u'system:index': u'MCD43A4_005_2004_06_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_06_17', u'properties': {u'system:time_end': 1088812800000, u'system:time_start': 1087430400000, u'system:index': u'MCD43A4_005_2004_06_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_06_25', u'properties': {u'system:time_end': 1089504000000, u'system:time_start': 1088121600000, u'system:index': u'MCD43A4_005_2004_06_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_07_03', u'properties': {u'system:time_end': 1090195200000, u'system:time_start': 1088812800000, u'system:index': u'MCD43A4_005_2004_07_03'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_07_11', u'properties': {u'system:time_end': 1090886400000, u'system:time_start': 1089504000000, u'system:index': u'MCD43A4_005_2004_07_11'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_07_19', u'properties': {u'system:time_end': 1091577600000, u'system:time_start': 1090195200000, u'system:index': u'MCD43A4_005_2004_07_19'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_07_27', u'properties': {u'system:time_end': 1092268800000, u'system:time_start': 1090886400000, u'system:index': u'MCD43A4_005_2004_07_27'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_08_04', u'properties': {u'system:time_end': 1092960000000, u'system:time_start': 1091577600000, u'system:index': u'MCD43A4_005_2004_08_04'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_08_12', u'properties': {u'system:time_end': 1093651200000, u'system:time_start': 1092268800000, u'system:index': u'MCD43A4_005_2004_08_12'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_08_20', u'properties': {u'system:time_end': 1094342400000, u'system:time_start': 1092960000000, u'system:index': u'MCD43A4_005_2004_08_20'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_08_28', u'properties': {u'system:time_end': 1095033600000, u'system:time_start': 1093651200000, u'system:index': u'MCD43A4_005_2004_08_28'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_09_05', u'properties': {u'system:time_end': 1095724800000, u'system:time_start': 1094342400000, u'system:index': u'MCD43A4_005_2004_09_05'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_09_13', u'properties': {u'system:time_end': 1096416000000, u'system:time_start': 1095033600000, u'system:index': u'MCD43A4_005_2004_09_13'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_09_21', u'properties': {u'system:time_end': 1097107200000, u'system:time_start': 1095724800000, u'system:index': u'MCD43A4_005_2004_09_21'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_09_29', u'properties': {u'system:time_end': 1097798400000, u'system:time_start': 1096416000000, u'system:index': u'MCD43A4_005_2004_09_29'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_10_07', u'properties': {u'system:time_end': 1098489600000, u'system:time_start': 1097107200000, u'system:index': u'MCD43A4_005_2004_10_07'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_10_15', u'properties': {u'system:time_end': 1099180800000, u'system:time_start': 1097798400000, u'system:index': u'MCD43A4_005_2004_10_15'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_10_23', u'properties': {u'system:time_end': 1099872000000, u'system:time_start': 1098489600000, u'system:index': u'MCD43A4_005_2004_10_23'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_10_31', u'properties': {u'system:time_end': 1100563200000, u'system:time_start': 1099180800000, u'system:index': u'MCD43A4_005_2004_10_31'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_11_08', u'properties': {u'system:time_end': 1101254400000, u'system:time_start': 1099872000000, u'system:index': u'MCD43A4_005_2004_11_08'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_11_16', u'properties': {u'system:time_end': 1101945600000, u'system:time_start': 1100563200000, u'system:index': u'MCD43A4_005_2004_11_16'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_11_24', u'properties': {u'system:time_end': 1102636800000, u'system:time_start': 1101254400000, u'system:index': u'MCD43A4_005_2004_11_24'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_12_02', u'properties': {u'system:time_end': 1103328000000, u'system:time_start': 1101945600000, u'system:index': u'MCD43A4_005_2004_12_02'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_12_10', u'properties': {u'system:time_end': 1104019200000, u'system:time_start': 1102636800000, u'system:index': u'MCD43A4_005_2004_12_10'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_12_18', u'properties': {u'system:time_end': 1104710400000, u'system:time_start': 1103328000000, u'system:index': u'MCD43A4_005_2004_12_18'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2004_12_26', u'properties': {u'system:time_end': 1105401600000, u'system:time_start': 1104019200000, u'system:index': u'MCD43A4_005_2004_12_26'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_01_01', u'properties': {u'system:time_end': 1105920000000, u'system:time_start': 1104537600000, u'system:index': u'MCD43A4_005_2005_01_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_01_09', u'properties': {u'system:time_end': 1106611200000, u'system:time_start': 1105228800000, u'system:index': u'MCD43A4_005_2005_01_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_01_17', u'properties': {u'system:time_end': 1107302400000, u'system:time_start': 1105920000000, u'system:index': u'MCD43A4_005_2005_01_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_01_25', u'properties': {u'system:time_end': 1107993600000, u'system:time_start': 1106611200000, u'system:index': u'MCD43A4_005_2005_01_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_02_02', u'properties': {u'system:time_end': 1108684800000, u'system:time_start': 1107302400000, u'system:index': u'MCD43A4_005_2005_02_02'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_02_10', u'properties': {u'system:time_end': 1109376000000, u'system:time_start': 1107993600000, u'system:index': u'MCD43A4_005_2005_02_10'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_02_18', u'properties': {u'system:time_end': 1110067200000, u'system:time_start': 1108684800000, u'system:index': u'MCD43A4_005_2005_02_18'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_02_26', u'properties': {u'system:time_end': 1110758400000, u'system:time_start': 1109376000000, u'system:index': u'MCD43A4_005_2005_02_26'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_03_06', u'properties': {u'system:time_end': 1111449600000, u'system:time_start': 1110067200000, u'system:index': u'MCD43A4_005_2005_03_06'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_03_14', u'properties': {u'system:time_end': 1112140800000, u'system:time_start': 1110758400000, u'system:index': u'MCD43A4_005_2005_03_14'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_03_22', u'properties': {u'system:time_end': 1112832000000, u'system:time_start': 1111449600000, u'system:index': u'MCD43A4_005_2005_03_22'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_03_30', u'properties': {u'system:time_end': 1113523200000, u'system:time_start': 1112140800000, u'system:index': u'MCD43A4_005_2005_03_30'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_04_07', u'properties': {u'system:time_end': 1114214400000, u'system:time_start': 1112832000000, u'system:index': u'MCD43A4_005_2005_04_07'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_04_15', u'properties': {u'system:time_end': 1114905600000, u'system:time_start': 1113523200000, u'system:index': u'MCD43A4_005_2005_04_15'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_04_23', u'properties': {u'system:time_end': 1115596800000, u'system:time_start': 1114214400000, u'system:index': u'MCD43A4_005_2005_04_23'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_05_01', u'properties': {u'system:time_end': 1116288000000, u'system:time_start': 1114905600000, u'system:index': u'MCD43A4_005_2005_05_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_05_09', u'properties': {u'system:time_end': 1116979200000, u'system:time_start': 1115596800000, u'system:index': u'MCD43A4_005_2005_05_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_05_17', u'properties': {u'system:time_end': 1117670400000, u'system:time_start': 1116288000000, u'system:index': u'MCD43A4_005_2005_05_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_05_25', u'properties': {u'system:time_end': 1118361600000, u'system:time_start': 1116979200000, u'system:index': u'MCD43A4_005_2005_05_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_06_02', u'properties': {u'system:time_end': 1119052800000, u'system:time_start': 1117670400000, u'system:index': u'MCD43A4_005_2005_06_02'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_06_10', u'properties': {u'system:time_end': 1119744000000, u'system:time_start': 1118361600000, u'system:index': u'MCD43A4_005_2005_06_10'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_06_18', u'properties': {u'system:time_end': 1120435200000, u'system:time_start': 1119052800000, u'system:index': u'MCD43A4_005_2005_06_18'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_06_26', u'properties': {u'system:time_end': 1121126400000, u'system:time_start': 1119744000000, u'system:index': u'MCD43A4_005_2005_06_26'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_07_04', u'properties': {u'system:time_end': 1121817600000, u'system:time_start': 1120435200000, u'system:index': u'MCD43A4_005_2005_07_04'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_07_12', u'properties': {u'system:time_end': 1122508800000, u'system:time_start': 1121126400000, u'system:index': u'MCD43A4_005_2005_07_12'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_07_20', u'properties': {u'system:time_end': 1123200000000, u'system:time_start': 1121817600000, u'system:index': u'MCD43A4_005_2005_07_20'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_07_28', u'properties': {u'system:time_end': 1123891200000, u'system:time_start': 1122508800000, u'system:index': u'MCD43A4_005_2005_07_28'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_08_05', u'properties': {u'system:time_end': 1124582400000, u'system:time_start': 1123200000000, u'system:index': u'MCD43A4_005_2005_08_05'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_08_13', u'properties': {u'system:time_end': 1125273600000, u'system:time_start': 1123891200000, u'system:index': u'MCD43A4_005_2005_08_13'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_08_21', u'properties': {u'system:time_end': 1125964800000, u'system:time_start': 1124582400000, u'system:index': u'MCD43A4_005_2005_08_21'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_08_29', u'properties': {u'system:time_end': 1126656000000, u'system:time_start': 1125273600000, u'system:index': u'MCD43A4_005_2005_08_29'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_09_06', u'properties': {u'system:time_end': 1127347200000, u'system:time_start': 1125964800000, u'system:index': u'MCD43A4_005_2005_09_06'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_09_14', u'properties': {u'system:time_end': 1128038400000, u'system:time_start': 1126656000000, u'system:index': u'MCD43A4_005_2005_09_14'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_09_22', u'properties': {u'system:time_end': 1128729600000, u'system:time_start': 1127347200000, u'system:index': u'MCD43A4_005_2005_09_22'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_09_30', u'properties': {u'system:time_end': 1129420800000, u'system:time_start': 1128038400000, u'system:index': u'MCD43A4_005_2005_09_30'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_10_08', u'properties': {u'system:time_end': 1130112000000, u'system:time_start': 1128729600000, u'system:index': u'MCD43A4_005_2005_10_08'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_10_16', u'properties': {u'system:time_end': 1130803200000, u'system:time_start': 1129420800000, u'system:index': u'MCD43A4_005_2005_10_16'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_10_24', u'properties': {u'system:time_end': 1131494400000, u'system:time_start': 1130112000000, u'system:index': u'MCD43A4_005_2005_10_24'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_11_01', u'properties': {u'system:time_end': 1132185600000, u'system:time_start': 1130803200000, u'system:index': u'MCD43A4_005_2005_11_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_11_09', u'properties': {u'system:time_end': 1132876800000, u'system:time_start': 1131494400000, u'system:index': u'MCD43A4_005_2005_11_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_11_17', u'properties': {u'system:time_end': 1133568000000, u'system:time_start': 1132185600000, u'system:index': u'MCD43A4_005_2005_11_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_11_25', u'properties': {u'system:time_end': 1134259200000, u'system:time_start': 1132876800000, u'system:index': u'MCD43A4_005_2005_11_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_12_03', u'properties': {u'system:time_end': 1134950400000, u'system:time_start': 1133568000000, u'system:index': u'MCD43A4_005_2005_12_03'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_12_11', u'properties': {u'system:time_end': 1135641600000, u'system:time_start': 1134259200000, u'system:index': u'MCD43A4_005_2005_12_11'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_12_19', u'properties': {u'system:time_end': 1136332800000, u'system:time_start': 1134950400000, u'system:index': u'MCD43A4_005_2005_12_19'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2005_12_27', u'properties': {u'system:time_end': 1137024000000, u'system:time_start': 1135641600000, u'system:index': u'MCD43A4_005_2005_12_27'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_01_01', u'properties': {u'system:time_end': 1137456000000, u'system:time_start': 1136073600000, u'system:index': u'MCD43A4_005_2006_01_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_01_09', u'properties': {u'system:time_end': 1138147200000, u'system:time_start': 1136764800000, u'system:index': u'MCD43A4_005_2006_01_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_01_17', u'properties': {u'system:time_end': 1138838400000, u'system:time_start': 1137456000000, u'system:index': u'MCD43A4_005_2006_01_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_01_25', u'properties': {u'system:time_end': 1139529600000, u'system:time_start': 1138147200000, u'system:index': u'MCD43A4_005_2006_01_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_02_02', u'properties': {u'system:time_end': 1140220800000, u'system:time_start': 1138838400000, u'system:index': u'MCD43A4_005_2006_02_02'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_02_10', u'properties': {u'system:time_end': 1140912000000, u'system:time_start': 1139529600000, u'system:index': u'MCD43A4_005_2006_02_10'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_02_18', u'properties': {u'system:time_end': 1141603200000, u'system:time_start': 1140220800000, u'system:index': u'MCD43A4_005_2006_02_18'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_02_26', u'properties': {u'system:time_end': 1142294400000, u'system:time_start': 1140912000000, u'system:index': u'MCD43A4_005_2006_02_26'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_03_06', u'properties': {u'system:time_end': 1142985600000, u'system:time_start': 1141603200000, u'system:index': u'MCD43A4_005_2006_03_06'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_03_14', u'properties': {u'system:time_end': 1143676800000, u'system:time_start': 1142294400000, u'system:index': u'MCD43A4_005_2006_03_14'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_03_22', u'properties': {u'system:time_end': 1144368000000, u'system:time_start': 1142985600000, u'system:index': u'MCD43A4_005_2006_03_22'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_03_30', u'properties': {u'system:time_end': 1145059200000, u'system:time_start': 1143676800000, u'system:index': u'MCD43A4_005_2006_03_30'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_04_07', u'properties': {u'system:time_end': 1145750400000, u'system:time_start': 1144368000000, u'system:index': u'MCD43A4_005_2006_04_07'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_04_15', u'properties': {u'system:time_end': 1146441600000, u'system:time_start': 1145059200000, u'system:index': u'MCD43A4_005_2006_04_15'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_04_23', u'properties': {u'system:time_end': 1147132800000, u'system:time_start': 1145750400000, u'system:index': u'MCD43A4_005_2006_04_23'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_05_01', u'properties': {u'system:time_end': 1147824000000, u'system:time_start': 1146441600000, u'system:index': u'MCD43A4_005_2006_05_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_05_09', u'properties': {u'system:time_end': 1148515200000, u'system:time_start': 1147132800000, u'system:index': u'MCD43A4_005_2006_05_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_05_17', u'properties': {u'system:time_end': 1149206400000, u'system:time_start': 1147824000000, u'system:index': u'MCD43A4_005_2006_05_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_05_25', u'properties': {u'system:time_end': 1149897600000, u'system:time_start': 1148515200000, u'system:index': u'MCD43A4_005_2006_05_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_06_02', u'properties': {u'system:time_end': 1150588800000, u'system:time_start': 1149206400000, u'system:index': u'MCD43A4_005_2006_06_02'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_06_10', u'properties': {u'system:time_end': 1151280000000, u'system:time_start': 1149897600000, u'system:index': u'MCD43A4_005_2006_06_10'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_06_18', u'properties': {u'system:time_end': 1151971200000, u'system:time_start': 1150588800000, u'system:index': u'MCD43A4_005_2006_06_18'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_06_26', u'properties': {u'system:time_end': 1152662400000, u'system:time_start': 1151280000000, u'system:index': u'MCD43A4_005_2006_06_26'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_07_04', u'properties': {u'system:time_end': 1153353600000, u'system:time_start': 1151971200000, u'system:index': u'MCD43A4_005_2006_07_04'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_07_12', u'properties': {u'system:time_end': 1154044800000, u'system:time_start': 1152662400000, u'system:index': u'MCD43A4_005_2006_07_12'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_07_20', u'properties': {u'system:time_end': 1154736000000, u'system:time_start': 1153353600000, u'system:index': u'MCD43A4_005_2006_07_20'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_07_28', u'properties': {u'system:time_end': 1155427200000, u'system:time_start': 1154044800000, u'system:index': u'MCD43A4_005_2006_07_28'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_08_05', u'properties': {u'system:time_end': 1156118400000, u'system:time_start': 1154736000000, u'system:index': u'MCD43A4_005_2006_08_05'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_08_13', u'properties': {u'system:time_end': 1156809600000, u'system:time_start': 1155427200000, u'system:index': u'MCD43A4_005_2006_08_13'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_08_21', u'properties': {u'system:time_end': 1157500800000, u'system:time_start': 1156118400000, u'system:index': u'MCD43A4_005_2006_08_21'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_08_29', u'properties': {u'system:time_end': 1158192000000, u'system:time_start': 1156809600000, u'system:index': u'MCD43A4_005_2006_08_29'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_09_06', u'properties': {u'system:time_end': 1158883200000, u'system:time_start': 1157500800000, u'system:index': u'MCD43A4_005_2006_09_06'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_09_14', u'properties': {u'system:time_end': 1159574400000, u'system:time_start': 1158192000000, u'system:index': u'MCD43A4_005_2006_09_14'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_09_22', u'properties': {u'system:time_end': 1160265600000, u'system:time_start': 1158883200000, u'system:index': u'MCD43A4_005_2006_09_22'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_09_30', u'properties': {u'system:time_end': 1160956800000, u'system:time_start': 1159574400000, u'system:index': u'MCD43A4_005_2006_09_30'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_10_08', u'properties': {u'system:time_end': 1161648000000, u'system:time_start': 1160265600000, u'system:index': u'MCD43A4_005_2006_10_08'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_10_16', u'properties': {u'system:time_end': 1162339200000, u'system:time_start': 1160956800000, u'system:index': u'MCD43A4_005_2006_10_16'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_10_24', u'properties': {u'system:time_end': 1163030400000, u'system:time_start': 1161648000000, u'system:index': u'MCD43A4_005_2006_10_24'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_11_01', u'properties': {u'system:time_end': 1163721600000, u'system:time_start': 1162339200000, u'system:index': u'MCD43A4_005_2006_11_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_11_09', u'properties': {u'system:time_end': 1164412800000, u'system:time_start': 1163030400000, u'system:index': u'MCD43A4_005_2006_11_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_11_17', u'properties': {u'system:time_end': 1165104000000, u'system:time_start': 1163721600000, u'system:index': u'MCD43A4_005_2006_11_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_11_25', u'properties': {u'system:time_end': 1165795200000, u'system:time_start': 1164412800000, u'system:index': u'MCD43A4_005_2006_11_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_12_03', u'properties': {u'system:time_end': 1166486400000, u'system:time_start': 1165104000000, u'system:index': u'MCD43A4_005_2006_12_03'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_12_11', u'properties': {u'system:time_end': 1167177600000, u'system:time_start': 1165795200000, u'system:index': u'MCD43A4_005_2006_12_11'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_12_19', u'properties': {u'system:time_end': 1167868800000, u'system:time_start': 1166486400000, u'system:index': u'MCD43A4_005_2006_12_19'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2006_12_27', u'properties': {u'system:time_end': 1168560000000, u'system:time_start': 1167177600000, u'system:index': u'MCD43A4_005_2006_12_27'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_01_01', u'properties': {u'system:time_end': 1168992000000, u'system:time_start': 1167609600000, u'system:index': u'MCD43A4_005_2007_01_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_01_09', u'properties': {u'system:time_end': 1169683200000, u'system:time_start': 1168300800000, u'system:index': u'MCD43A4_005_2007_01_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_01_17', u'properties': {u'system:time_end': 1170374400000, u'system:time_start': 1168992000000, u'system:index': u'MCD43A4_005_2007_01_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_01_25', u'properties': {u'system:time_end': 1171065600000, u'system:time_start': 1169683200000, u'system:index': u'MCD43A4_005_2007_01_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_02_02', u'properties': {u'system:time_end': 1171756800000, u'system:time_start': 1170374400000, u'system:index': u'MCD43A4_005_2007_02_02'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_02_10', u'properties': {u'system:time_end': 1172448000000, u'system:time_start': 1171065600000, u'system:index': u'MCD43A4_005_2007_02_10'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_02_18', u'properties': {u'system:time_end': 1173139200000, u'system:time_start': 1171756800000, u'system:index': u'MCD43A4_005_2007_02_18'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_02_26', u'properties': {u'system:time_end': 1173830400000, u'system:time_start': 1172448000000, u'system:index': u'MCD43A4_005_2007_02_26'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_03_06', u'properties': {u'system:time_end': 1174521600000, u'system:time_start': 1173139200000, u'system:index': u'MCD43A4_005_2007_03_06'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_03_14', u'properties': {u'system:time_end': 1175212800000, u'system:time_start': 1173830400000, u'system:index': u'MCD43A4_005_2007_03_14'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_03_22', u'properties': {u'system:time_end': 1175904000000, u'system:time_start': 1174521600000, u'system:index': u'MCD43A4_005_2007_03_22'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_03_30', u'properties': {u'system:time_end': 1176595200000, u'system:time_start': 1175212800000, u'system:index': u'MCD43A4_005_2007_03_30'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_04_07', u'properties': {u'system:time_end': 1177286400000, u'system:time_start': 1175904000000, u'system:index': u'MCD43A4_005_2007_04_07'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_04_15', u'properties': {u'system:time_end': 1177977600000, u'system:time_start': 1176595200000, u'system:index': u'MCD43A4_005_2007_04_15'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_04_23', u'properties': {u'system:time_end': 1178668800000, u'system:time_start': 1177286400000, u'system:index': u'MCD43A4_005_2007_04_23'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_05_01', u'properties': {u'system:time_end': 1179360000000, u'system:time_start': 1177977600000, u'system:index': u'MCD43A4_005_2007_05_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_05_09', u'properties': {u'system:time_end': 1180051200000, u'system:time_start': 1178668800000, u'system:index': u'MCD43A4_005_2007_05_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_05_17', u'properties': {u'system:time_end': 1180742400000, u'system:time_start': 1179360000000, u'system:index': u'MCD43A4_005_2007_05_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_05_25', u'properties': {u'system:time_end': 1181433600000, u'system:time_start': 1180051200000, u'system:index': u'MCD43A4_005_2007_05_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_06_02', u'properties': {u'system:time_end': 1182124800000, u'system:time_start': 1180742400000, u'system:index': u'MCD43A4_005_2007_06_02'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_06_10', u'properties': {u'system:time_end': 1182816000000, u'system:time_start': 1181433600000, u'system:index': u'MCD43A4_005_2007_06_10'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_06_18', u'properties': {u'system:time_end': 1183507200000, u'system:time_start': 1182124800000, u'system:index': u'MCD43A4_005_2007_06_18'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_06_26', u'properties': {u'system:time_end': 1184198400000, u'system:time_start': 1182816000000, u'system:index': u'MCD43A4_005_2007_06_26'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_07_04', u'properties': {u'system:time_end': 1184889600000, u'system:time_start': 1183507200000, u'system:index': u'MCD43A4_005_2007_07_04'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_07_12', u'properties': {u'system:time_end': 1185580800000, u'system:time_start': 1184198400000, u'system:index': u'MCD43A4_005_2007_07_12'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_07_20', u'properties': {u'system:time_end': 1186272000000, u'system:time_start': 1184889600000, u'system:index': u'MCD43A4_005_2007_07_20'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_07_28', u'properties': {u'system:time_end': 1186963200000, u'system:time_start': 1185580800000, u'system:index': u'MCD43A4_005_2007_07_28'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_08_05', u'properties': {u'system:time_end': 1187654400000, u'system:time_start': 1186272000000, u'system:index': u'MCD43A4_005_2007_08_05'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_08_13', u'properties': {u'system:time_end': 1188345600000, u'system:time_start': 1186963200000, u'system:index': u'MCD43A4_005_2007_08_13'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_08_21', u'properties': {u'system:time_end': 1189036800000, u'system:time_start': 1187654400000, u'system:index': u'MCD43A4_005_2007_08_21'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_08_29', u'properties': {u'system:time_end': 1189728000000, u'system:time_start': 1188345600000, u'system:index': u'MCD43A4_005_2007_08_29'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_09_06', u'properties': {u'system:time_end': 1190419200000, u'system:time_start': 1189036800000, u'system:index': u'MCD43A4_005_2007_09_06'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_09_14', u'properties': {u'system:time_end': 1191110400000, u'system:time_start': 1189728000000, u'system:index': u'MCD43A4_005_2007_09_14'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_09_22', u'properties': {u'system:time_end': 1191801600000, u'system:time_start': 1190419200000, u'system:index': u'MCD43A4_005_2007_09_22'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_09_30', u'properties': {u'system:time_end': 1192492800000, u'system:time_start': 1191110400000, u'system:index': u'MCD43A4_005_2007_09_30'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_10_08', u'properties': {u'system:time_end': 1193184000000, u'system:time_start': 1191801600000, u'system:index': u'MCD43A4_005_2007_10_08'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_10_16', u'properties': {u'system:time_end': 1193875200000, u'system:time_start': 1192492800000, u'system:index': u'MCD43A4_005_2007_10_16'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_10_24', u'properties': {u'system:time_end': 1194566400000, u'system:time_start': 1193184000000, u'system:index': u'MCD43A4_005_2007_10_24'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_11_01', u'properties': {u'system:time_end': 1195257600000, u'system:time_start': 1193875200000, u'system:index': u'MCD43A4_005_2007_11_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_11_09', u'properties': {u'system:time_end': 1195948800000, u'system:time_start': 1194566400000, u'system:index': u'MCD43A4_005_2007_11_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_11_17', u'properties': {u'system:time_end': 1196640000000, u'system:time_start': 1195257600000, u'system:index': u'MCD43A4_005_2007_11_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_11_25', u'properties': {u'system:time_end': 1197331200000, u'system:time_start': 1195948800000, u'system:index': u'MCD43A4_005_2007_11_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_12_03', u'properties': {u'system:time_end': 1198022400000, u'system:time_start': 1196640000000, u'system:index': u'MCD43A4_005_2007_12_03'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_12_11', u'properties': {u'system:time_end': 1198713600000, u'system:time_start': 1197331200000, u'system:index': u'MCD43A4_005_2007_12_11'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_12_19', u'properties': {u'system:time_end': 1199404800000, u'system:time_start': 1198022400000, u'system:index': u'MCD43A4_005_2007_12_19'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2007_12_27', u'properties': {u'system:time_end': 1200096000000, u'system:time_start': 1198713600000, u'system:index': u'MCD43A4_005_2007_12_27'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_01_01', u'properties': {u'system:time_end': 1200528000000, u'system:time_start': 1199145600000, u'system:index': u'MCD43A4_005_2008_01_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_01_09', u'properties': {u'system:time_end': 1201219200000, u'system:time_start': 1199836800000, u'system:index': u'MCD43A4_005_2008_01_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_01_17', u'properties': {u'system:time_end': 1201910400000, u'system:time_start': 1200528000000, u'system:index': u'MCD43A4_005_2008_01_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_01_25', u'properties': {u'system:time_end': 1202601600000, u'system:time_start': 1201219200000, u'system:index': u'MCD43A4_005_2008_01_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_02_02', u'properties': {u'system:time_end': 1203292800000, u'system:time_start': 1201910400000, u'system:index': u'MCD43A4_005_2008_02_02'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_02_10', u'properties': {u'system:time_end': 1203984000000, u'system:time_start': 1202601600000, u'system:index': u'MCD43A4_005_2008_02_10'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_02_18', u'properties': {u'system:time_end': 1204675200000, u'system:time_start': 1203292800000, u'system:index': u'MCD43A4_005_2008_02_18'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_02_26', u'properties': {u'system:time_end': 1205366400000, u'system:time_start': 1203984000000, u'system:index': u'MCD43A4_005_2008_02_26'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_03_05', u'properties': {u'system:time_end': 1206057600000, u'system:time_start': 1204675200000, u'system:index': u'MCD43A4_005_2008_03_05'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_03_13', u'properties': {u'system:time_end': 1206748800000, u'system:time_start': 1205366400000, u'system:index': u'MCD43A4_005_2008_03_13'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_03_21', u'properties': {u'system:time_end': 1207440000000, u'system:time_start': 1206057600000, u'system:index': u'MCD43A4_005_2008_03_21'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_03_29', u'properties': {u'system:time_end': 1208131200000, u'system:time_start': 1206748800000, u'system:index': u'MCD43A4_005_2008_03_29'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_04_06', u'properties': {u'system:time_end': 1208822400000, u'system:time_start': 1207440000000, u'system:index': u'MCD43A4_005_2008_04_06'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_04_14', u'properties': {u'system:time_end': 1209513600000, u'system:time_start': 1208131200000, u'system:index': u'MCD43A4_005_2008_04_14'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_04_22', u'properties': {u'system:time_end': 1210204800000, u'system:time_start': 1208822400000, u'system:index': u'MCD43A4_005_2008_04_22'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_04_30', u'properties': {u'system:time_end': 1210896000000, u'system:time_start': 1209513600000, u'system:index': u'MCD43A4_005_2008_04_30'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_05_08', u'properties': {u'system:time_end': 1211587200000, u'system:time_start': 1210204800000, u'system:index': u'MCD43A4_005_2008_05_08'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_05_16', u'properties': {u'system:time_end': 1212278400000, u'system:time_start': 1210896000000, u'system:index': u'MCD43A4_005_2008_05_16'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_05_24', u'properties': {u'system:time_end': 1212969600000, u'system:time_start': 1211587200000, u'system:index': u'MCD43A4_005_2008_05_24'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_06_01', u'properties': {u'system:time_end': 1213660800000, u'system:time_start': 1212278400000, u'system:index': u'MCD43A4_005_2008_06_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_06_09', u'properties': {u'system:time_end': 1214352000000, u'system:time_start': 1212969600000, u'system:index': u'MCD43A4_005_2008_06_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_06_17', u'properties': {u'system:time_end': 1215043200000, u'system:time_start': 1213660800000, u'system:index': u'MCD43A4_005_2008_06_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_06_25', u'properties': {u'system:time_end': 1215734400000, u'system:time_start': 1214352000000, u'system:index': u'MCD43A4_005_2008_06_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_07_03', u'properties': {u'system:time_end': 1216425600000, u'system:time_start': 1215043200000, u'system:index': u'MCD43A4_005_2008_07_03'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_07_11', u'properties': {u'system:time_end': 1217116800000, u'system:time_start': 1215734400000, u'system:index': u'MCD43A4_005_2008_07_11'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_07_19', u'properties': {u'system:time_end': 1217808000000, u'system:time_start': 1216425600000, u'system:index': u'MCD43A4_005_2008_07_19'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_07_27', u'properties': {u'system:time_end': 1218499200000, u'system:time_start': 1217116800000, u'system:index': u'MCD43A4_005_2008_07_27'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_08_04', u'properties': {u'system:time_end': 1219190400000, u'system:time_start': 1217808000000, u'system:index': u'MCD43A4_005_2008_08_04'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_08_12', u'properties': {u'system:time_end': 1219881600000, u'system:time_start': 1218499200000, u'system:index': u'MCD43A4_005_2008_08_12'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_08_20', u'properties': {u'system:time_end': 1220572800000, u'system:time_start': 1219190400000, u'system:index': u'MCD43A4_005_2008_08_20'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_08_28', u'properties': {u'system:time_end': 1221264000000, u'system:time_start': 1219881600000, u'system:index': u'MCD43A4_005_2008_08_28'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_09_05', u'properties': {u'system:time_end': 1221955200000, u'system:time_start': 1220572800000, u'system:index': u'MCD43A4_005_2008_09_05'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_09_13', u'properties': {u'system:time_end': 1222646400000, u'system:time_start': 1221264000000, u'system:index': u'MCD43A4_005_2008_09_13'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_09_21', u'properties': {u'system:time_end': 1223337600000, u'system:time_start': 1221955200000, u'system:index': u'MCD43A4_005_2008_09_21'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_09_29', u'properties': {u'system:time_end': 1224028800000, u'system:time_start': 1222646400000, u'system:index': u'MCD43A4_005_2008_09_29'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_10_07', u'properties': {u'system:time_end': 1224720000000, u'system:time_start': 1223337600000, u'system:index': u'MCD43A4_005_2008_10_07'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_10_15', u'properties': {u'system:time_end': 1225411200000, u'system:time_start': 1224028800000, u'system:index': u'MCD43A4_005_2008_10_15'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_10_23', u'properties': {u'system:time_end': 1226102400000, u'system:time_start': 1224720000000, u'system:index': u'MCD43A4_005_2008_10_23'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_10_31', u'properties': {u'system:time_end': 1226793600000, u'system:time_start': 1225411200000, u'system:index': u'MCD43A4_005_2008_10_31'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_11_08', u'properties': {u'system:time_end': 1227484800000, u'system:time_start': 1226102400000, u'system:index': u'MCD43A4_005_2008_11_08'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_11_16', u'properties': {u'system:time_end': 1228176000000, u'system:time_start': 1226793600000, u'system:index': u'MCD43A4_005_2008_11_16'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_11_24', u'properties': {u'system:time_end': 1228867200000, u'system:time_start': 1227484800000, u'system:index': u'MCD43A4_005_2008_11_24'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_12_02', u'properties': {u'system:time_end': 1229558400000, u'system:time_start': 1228176000000, u'system:index': u'MCD43A4_005_2008_12_02'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_12_10', u'properties': {u'system:time_end': 1230249600000, u'system:time_start': 1228867200000, u'system:index': u'MCD43A4_005_2008_12_10'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_12_18', u'properties': {u'system:time_end': 1230940800000, u'system:time_start': 1229558400000, u'system:index': u'MCD43A4_005_2008_12_18'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2008_12_26', u'properties': {u'system:time_end': 1231632000000, u'system:time_start': 1230249600000, u'system:index': u'MCD43A4_005_2008_12_26'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_01_01', u'properties': {u'system:time_end': 1232150400000, u'system:time_start': 1230768000000, u'system:index': u'MCD43A4_005_2009_01_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_01_09', u'properties': {u'system:time_end': 1232841600000, u'system:time_start': 1231459200000, u'system:index': u'MCD43A4_005_2009_01_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_01_17', u'properties': {u'system:time_end': 1233532800000, u'system:time_start': 1232150400000, u'system:index': u'MCD43A4_005_2009_01_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_01_25', u'properties': {u'system:time_end': 1234224000000, u'system:time_start': 1232841600000, u'system:index': u'MCD43A4_005_2009_01_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_02_02', u'properties': {u'system:time_end': 1234915200000, u'system:time_start': 1233532800000, u'system:index': u'MCD43A4_005_2009_02_02'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_02_10', u'properties': {u'system:time_end': 1235606400000, u'system:time_start': 1234224000000, u'system:index': u'MCD43A4_005_2009_02_10'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_02_18', u'properties': {u'system:time_end': 1236297600000, u'system:time_start': 1234915200000, u'system:index': u'MCD43A4_005_2009_02_18'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_02_26', u'properties': {u'system:time_end': 1236988800000, u'system:time_start': 1235606400000, u'system:index': u'MCD43A4_005_2009_02_26'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_03_06', u'properties': {u'system:time_end': 1237680000000, u'system:time_start': 1236297600000, u'system:index': u'MCD43A4_005_2009_03_06'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_03_14', u'properties': {u'system:time_end': 1238371200000, u'system:time_start': 1236988800000, u'system:index': u'MCD43A4_005_2009_03_14'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_03_22', u'properties': {u'system:time_end': 1239062400000, u'system:time_start': 1237680000000, u'system:index': u'MCD43A4_005_2009_03_22'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_03_30', u'properties': {u'system:time_end': 1239753600000, u'system:time_start': 1238371200000, u'system:index': u'MCD43A4_005_2009_03_30'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_04_07', u'properties': {u'system:time_end': 1240444800000, u'system:time_start': 1239062400000, u'system:index': u'MCD43A4_005_2009_04_07'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_04_15', u'properties': {u'system:time_end': 1241136000000, u'system:time_start': 1239753600000, u'system:index': u'MCD43A4_005_2009_04_15'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_04_23', u'properties': {u'system:time_end': 1241827200000, u'system:time_start': 1240444800000, u'system:index': u'MCD43A4_005_2009_04_23'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_05_01', u'properties': {u'system:time_end': 1242518400000, u'system:time_start': 1241136000000, u'system:index': u'MCD43A4_005_2009_05_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_05_09', u'properties': {u'system:time_end': 1243209600000, u'system:time_start': 1241827200000, u'system:index': u'MCD43A4_005_2009_05_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_05_17', u'properties': {u'system:time_end': 1243900800000, u'system:time_start': 1242518400000, u'system:index': u'MCD43A4_005_2009_05_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_05_25', u'properties': {u'system:time_end': 1244592000000, u'system:time_start': 1243209600000, u'system:index': u'MCD43A4_005_2009_05_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_06_02', u'properties': {u'system:time_end': 1245283200000, u'system:time_start': 1243900800000, u'system:index': u'MCD43A4_005_2009_06_02'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_06_10', u'properties': {u'system:time_end': 1245974400000, u'system:time_start': 1244592000000, u'system:index': u'MCD43A4_005_2009_06_10'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_06_18', u'properties': {u'system:time_end': 1246665600000, u'system:time_start': 1245283200000, u'system:index': u'MCD43A4_005_2009_06_18'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_06_26', u'properties': {u'system:time_end': 1247356800000, u'system:time_start': 1245974400000, u'system:index': u'MCD43A4_005_2009_06_26'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_07_04', u'properties': {u'system:time_end': 1248048000000, u'system:time_start': 1246665600000, u'system:index': u'MCD43A4_005_2009_07_04'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_07_12', u'properties': {u'system:time_end': 1248739200000, u'system:time_start': 1247356800000, u'system:index': u'MCD43A4_005_2009_07_12'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_07_20', u'properties': {u'system:time_end': 1249430400000, u'system:time_start': 1248048000000, u'system:index': u'MCD43A4_005_2009_07_20'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_07_28', u'properties': {u'system:time_end': 1250121600000, u'system:time_start': 1248739200000, u'system:index': u'MCD43A4_005_2009_07_28'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_08_05', u'properties': {u'system:time_end': 1250812800000, u'system:time_start': 1249430400000, u'system:index': u'MCD43A4_005_2009_08_05'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_08_13', u'properties': {u'system:time_end': 1251504000000, u'system:time_start': 1250121600000, u'system:index': u'MCD43A4_005_2009_08_13'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_08_21', u'properties': {u'system:time_end': 1252195200000, u'system:time_start': 1250812800000, u'system:index': u'MCD43A4_005_2009_08_21'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_08_29', u'properties': {u'system:time_end': 1252886400000, u'system:time_start': 1251504000000, u'system:index': u'MCD43A4_005_2009_08_29'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_09_06', u'properties': {u'system:time_end': 1253577600000, u'system:time_start': 1252195200000, u'system:index': u'MCD43A4_005_2009_09_06'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_09_14', u'properties': {u'system:time_end': 1254268800000, u'system:time_start': 1252886400000, u'system:index': u'MCD43A4_005_2009_09_14'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_09_22', u'properties': {u'system:time_end': 1254960000000, u'system:time_start': 1253577600000, u'system:index': u'MCD43A4_005_2009_09_22'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_09_30', u'properties': {u'system:time_end': 1255651200000, u'system:time_start': 1254268800000, u'system:index': u'MCD43A4_005_2009_09_30'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_10_08', u'properties': {u'system:time_end': 1256342400000, u'system:time_start': 1254960000000, u'system:index': u'MCD43A4_005_2009_10_08'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_10_16', u'properties': {u'system:time_end': 1257033600000, u'system:time_start': 1255651200000, u'system:index': u'MCD43A4_005_2009_10_16'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_10_24', u'properties': {u'system:time_end': 1257724800000, u'system:time_start': 1256342400000, u'system:index': u'MCD43A4_005_2009_10_24'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_11_01', u'properties': {u'system:time_end': 1258416000000, u'system:time_start': 1257033600000, u'system:index': u'MCD43A4_005_2009_11_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_11_09', u'properties': {u'system:time_end': 1259107200000, u'system:time_start': 1257724800000, u'system:index': u'MCD43A4_005_2009_11_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_11_17', u'properties': {u'system:time_end': 1259798400000, u'system:time_start': 1258416000000, u'system:index': u'MCD43A4_005_2009_11_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_11_25', u'properties': {u'system:time_end': 1260489600000, u'system:time_start': 1259107200000, u'system:index': u'MCD43A4_005_2009_11_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_12_03', u'properties': {u'system:time_end': 1261180800000, u'system:time_start': 1259798400000, u'system:index': u'MCD43A4_005_2009_12_03'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_12_11', u'properties': {u'system:time_end': 1261872000000, u'system:time_start': 1260489600000, u'system:index': u'MCD43A4_005_2009_12_11'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_12_19', u'properties': {u'system:time_end': 1262563200000, u'system:time_start': 1261180800000, u'system:index': u'MCD43A4_005_2009_12_19'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2009_12_27', u'properties': {u'system:time_end': 1263254400000, u'system:time_start': 1261872000000, u'system:index': u'MCD43A4_005_2009_12_27'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_01_01', u'properties': {u'system:time_end': 1263686400000, u'system:time_start': 1262304000000, u'system:index': u'MCD43A4_005_2010_01_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_01_09', u'properties': {u'system:time_end': 1264377600000, u'system:time_start': 1262995200000, u'system:index': u'MCD43A4_005_2010_01_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_01_17', u'properties': {u'system:time_end': 1265068800000, u'system:time_start': 1263686400000, u'system:index': u'MCD43A4_005_2010_01_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_01_25', u'properties': {u'system:time_end': 1265760000000, u'system:time_start': 1264377600000, u'system:index': u'MCD43A4_005_2010_01_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_02_02', u'properties': {u'system:time_end': 1266451200000, u'system:time_start': 1265068800000, u'system:index': u'MCD43A4_005_2010_02_02'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_02_10', u'properties': {u'system:time_end': 1267142400000, u'system:time_start': 1265760000000, u'system:index': u'MCD43A4_005_2010_02_10'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_02_18', u'properties': {u'system:time_end': 1267833600000, u'system:time_start': 1266451200000, u'system:index': u'MCD43A4_005_2010_02_18'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_02_26', u'properties': {u'system:time_end': 1268524800000, u'system:time_start': 1267142400000, u'system:index': u'MCD43A4_005_2010_02_26'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_03_06', u'properties': {u'system:time_end': 1269216000000, u'system:time_start': 1267833600000, u'system:index': u'MCD43A4_005_2010_03_06'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_03_14', u'properties': {u'system:time_end': 1269907200000, u'system:time_start': 1268524800000, u'system:index': u'MCD43A4_005_2010_03_14'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_03_22', u'properties': {u'system:time_end': 1270598400000, u'system:time_start': 1269216000000, u'system:index': u'MCD43A4_005_2010_03_22'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_03_30', u'properties': {u'system:time_end': 1271289600000, u'system:time_start': 1269907200000, u'system:index': u'MCD43A4_005_2010_03_30'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_04_07', u'properties': {u'system:time_end': 1271980800000, u'system:time_start': 1270598400000, u'system:index': u'MCD43A4_005_2010_04_07'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_04_15', u'properties': {u'system:time_end': 1272672000000, u'system:time_start': 1271289600000, u'system:index': u'MCD43A4_005_2010_04_15'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_04_23', u'properties': {u'system:time_end': 1273363200000, u'system:time_start': 1271980800000, u'system:index': u'MCD43A4_005_2010_04_23'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_05_01', u'properties': {u'system:time_end': 1274054400000, u'system:time_start': 1272672000000, u'system:index': u'MCD43A4_005_2010_05_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_05_09', u'properties': {u'system:time_end': 1274745600000, u'system:time_start': 1273363200000, u'system:index': u'MCD43A4_005_2010_05_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_05_17', u'properties': {u'system:time_end': 1275436800000, u'system:time_start': 1274054400000, u'system:index': u'MCD43A4_005_2010_05_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_05_25', u'properties': {u'system:time_end': 1276128000000, u'system:time_start': 1274745600000, u'system:index': u'MCD43A4_005_2010_05_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_06_02', u'properties': {u'system:time_end': 1276819200000, u'system:time_start': 1275436800000, u'system:index': u'MCD43A4_005_2010_06_02'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_06_10', u'properties': {u'system:time_end': 1277510400000, u'system:time_start': 1276128000000, u'system:index': u'MCD43A4_005_2010_06_10'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_06_18', u'properties': {u'system:time_end': 1278201600000, u'system:time_start': 1276819200000, u'system:index': u'MCD43A4_005_2010_06_18'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_06_26', u'properties': {u'system:time_end': 1278892800000, u'system:time_start': 1277510400000, u'system:index': u'MCD43A4_005_2010_06_26'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_07_04', u'properties': {u'system:time_end': 1279584000000, u'system:time_start': 1278201600000, u'system:index': u'MCD43A4_005_2010_07_04'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_07_12', u'properties': {u'system:time_end': 1280275200000, u'system:time_start': 1278892800000, u'system:index': u'MCD43A4_005_2010_07_12'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_07_20', u'properties': {u'system:time_end': 1280966400000, u'system:time_start': 1279584000000, u'system:index': u'MCD43A4_005_2010_07_20'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_07_28', u'properties': {u'system:time_end': 1281657600000, u'system:time_start': 1280275200000, u'system:index': u'MCD43A4_005_2010_07_28'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_08_05', u'properties': {u'system:time_end': 1282348800000, u'system:time_start': 1280966400000, u'system:index': u'MCD43A4_005_2010_08_05'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_08_13', u'properties': {u'system:time_end': 1283040000000, u'system:time_start': 1281657600000, u'system:index': u'MCD43A4_005_2010_08_13'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_08_21', u'properties': {u'system:time_end': 1283731200000, u'system:time_start': 1282348800000, u'system:index': u'MCD43A4_005_2010_08_21'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_08_29', u'properties': {u'system:time_end': 1284422400000, u'system:time_start': 1283040000000, u'system:index': u'MCD43A4_005_2010_08_29'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_09_06', u'properties': {u'system:time_end': 1285113600000, u'system:time_start': 1283731200000, u'system:index': u'MCD43A4_005_2010_09_06'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_09_14', u'properties': {u'system:time_end': 1285804800000, u'system:time_start': 1284422400000, u'system:index': u'MCD43A4_005_2010_09_14'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_09_22', u'properties': {u'system:time_end': 1286496000000, u'system:time_start': 1285113600000, u'system:index': u'MCD43A4_005_2010_09_22'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_09_30', u'properties': {u'system:time_end': 1287187200000, u'system:time_start': 1285804800000, u'system:index': u'MCD43A4_005_2010_09_30'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_10_08', u'properties': {u'system:time_end': 1287878400000, u'system:time_start': 1286496000000, u'system:index': u'MCD43A4_005_2010_10_08'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_10_16', u'properties': {u'system:time_end': 1288569600000, u'system:time_start': 1287187200000, u'system:index': u'MCD43A4_005_2010_10_16'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_10_24', u'properties': {u'system:time_end': 1289260800000, u'system:time_start': 1287878400000, u'system:index': u'MCD43A4_005_2010_10_24'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_11_01', u'properties': {u'system:time_end': 1289952000000, u'system:time_start': 1288569600000, u'system:index': u'MCD43A4_005_2010_11_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_11_09', u'properties': {u'system:time_end': 1290643200000, u'system:time_start': 1289260800000, u'system:index': u'MCD43A4_005_2010_11_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_11_17', u'properties': {u'system:time_end': 1291334400000, u'system:time_start': 1289952000000, u'system:index': u'MCD43A4_005_2010_11_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_11_25', u'properties': {u'system:time_end': 1292025600000, u'system:time_start': 1290643200000, u'system:index': u'MCD43A4_005_2010_11_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_12_03', u'properties': {u'system:time_end': 1292716800000, u'system:time_start': 1291334400000, u'system:index': u'MCD43A4_005_2010_12_03'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_12_11', u'properties': {u'system:time_end': 1293408000000, u'system:time_start': 1292025600000, u'system:index': u'MCD43A4_005_2010_12_11'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_12_19', u'properties': {u'system:time_end': 1294099200000, u'system:time_start': 1292716800000, u'system:index': u'MCD43A4_005_2010_12_19'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2010_12_27', u'properties': {u'system:time_end': 1294790400000, u'system:time_start': 1293408000000, u'system:index': u'MCD43A4_005_2010_12_27'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_01_01', u'properties': {u'system:time_end': 1295222400000, u'system:time_start': 1293840000000, u'system:index': u'MCD43A4_005_2011_01_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_01_09', u'properties': {u'system:time_end': 1295913600000, u'system:time_start': 1294531200000, u'system:index': u'MCD43A4_005_2011_01_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_01_17', u'properties': {u'system:time_end': 1296604800000, u'system:time_start': 1295222400000, u'system:index': u'MCD43A4_005_2011_01_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_01_25', u'properties': {u'system:time_end': 1297296000000, u'system:time_start': 1295913600000, u'system:index': u'MCD43A4_005_2011_01_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_02_02', u'properties': {u'system:time_end': 1297987200000, u'system:time_start': 1296604800000, u'system:index': u'MCD43A4_005_2011_02_02'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_02_10', u'properties': {u'system:time_end': 1298678400000, u'system:time_start': 1297296000000, u'system:index': u'MCD43A4_005_2011_02_10'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_02_18', u'properties': {u'system:time_end': 1299369600000, u'system:time_start': 1297987200000, u'system:index': u'MCD43A4_005_2011_02_18'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_02_26', u'properties': {u'system:time_end': 1300060800000, u'system:time_start': 1298678400000, u'system:index': u'MCD43A4_005_2011_02_26'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_03_06', u'properties': {u'system:time_end': 1300752000000, u'system:time_start': 1299369600000, u'system:index': u'MCD43A4_005_2011_03_06'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_03_14', u'properties': {u'system:time_end': 1301443200000, u'system:time_start': 1300060800000, u'system:index': u'MCD43A4_005_2011_03_14'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_03_22', u'properties': {u'system:time_end': 1302134400000, u'system:time_start': 1300752000000, u'system:index': u'MCD43A4_005_2011_03_22'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_03_30', u'properties': {u'system:time_end': 1302825600000, u'system:time_start': 1301443200000, u'system:index': u'MCD43A4_005_2011_03_30'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_04_07', u'properties': {u'system:time_end': 1303516800000, u'system:time_start': 1302134400000, u'system:index': u'MCD43A4_005_2011_04_07'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_04_15', u'properties': {u'system:time_end': 1304208000000, u'system:time_start': 1302825600000, u'system:index': u'MCD43A4_005_2011_04_15'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_04_23', u'properties': {u'system:time_end': 1304899200000, u'system:time_start': 1303516800000, u'system:index': u'MCD43A4_005_2011_04_23'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_05_01', u'properties': {u'system:time_end': 1305590400000, u'system:time_start': 1304208000000, u'system:index': u'MCD43A4_005_2011_05_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_05_09', u'properties': {u'system:time_end': 1306281600000, u'system:time_start': 1304899200000, u'system:index': u'MCD43A4_005_2011_05_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_05_17', u'properties': {u'system:time_end': 1306972800000, u'system:time_start': 1305590400000, u'system:index': u'MCD43A4_005_2011_05_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_05_25', u'properties': {u'system:time_end': 1307664000000, u'system:time_start': 1306281600000, u'system:index': u'MCD43A4_005_2011_05_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_06_02', u'properties': {u'system:time_end': 1308355200000, u'system:time_start': 1306972800000, u'system:index': u'MCD43A4_005_2011_06_02'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_06_10', u'properties': {u'system:time_end': 1309046400000, u'system:time_start': 1307664000000, u'system:index': u'MCD43A4_005_2011_06_10'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_06_18', u'properties': {u'system:time_end': 1309737600000, u'system:time_start': 1308355200000, u'system:index': u'MCD43A4_005_2011_06_18'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_06_26', u'properties': {u'system:time_end': 1310428800000, u'system:time_start': 1309046400000, u'system:index': u'MCD43A4_005_2011_06_26'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_07_04', u'properties': {u'system:time_end': 1311120000000, u'system:time_start': 1309737600000, u'system:index': u'MCD43A4_005_2011_07_04'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_07_12', u'properties': {u'system:time_end': 1311811200000, u'system:time_start': 1310428800000, u'system:index': u'MCD43A4_005_2011_07_12'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_07_20', u'properties': {u'system:time_end': 1312502400000, u'system:time_start': 1311120000000, u'system:index': u'MCD43A4_005_2011_07_20'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_07_28', u'properties': {u'system:time_end': 1313193600000, u'system:time_start': 1311811200000, u'system:index': u'MCD43A4_005_2011_07_28'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_08_05', u'properties': {u'system:time_end': 1313884800000, u'system:time_start': 1312502400000, u'system:index': u'MCD43A4_005_2011_08_05'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_08_13', u'properties': {u'system:time_end': 1314576000000, u'system:time_start': 1313193600000, u'system:index': u'MCD43A4_005_2011_08_13'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_08_21', u'properties': {u'system:time_end': 1315267200000, u'system:time_start': 1313884800000, u'system:index': u'MCD43A4_005_2011_08_21'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_08_29', u'properties': {u'system:time_end': 1315958400000, u'system:time_start': 1314576000000, u'system:index': u'MCD43A4_005_2011_08_29'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_09_06', u'properties': {u'system:time_end': 1316649600000, u'system:time_start': 1315267200000, u'system:index': u'MCD43A4_005_2011_09_06'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_09_14', u'properties': {u'system:time_end': 1317340800000, u'system:time_start': 1315958400000, u'system:index': u'MCD43A4_005_2011_09_14'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_09_22', u'properties': {u'system:time_end': 1318032000000, u'system:time_start': 1316649600000, u'system:index': u'MCD43A4_005_2011_09_22'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_09_30', u'properties': {u'system:time_end': 1318723200000, u'system:time_start': 1317340800000, u'system:index': u'MCD43A4_005_2011_09_30'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_10_08', u'properties': {u'system:time_end': 1319414400000, u'system:time_start': 1318032000000, u'system:index': u'MCD43A4_005_2011_10_08'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_10_16', u'properties': {u'system:time_end': 1320105600000, u'system:time_start': 1318723200000, u'system:index': u'MCD43A4_005_2011_10_16'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_10_24', u'properties': {u'system:time_end': 1320796800000, u'system:time_start': 1319414400000, u'system:index': u'MCD43A4_005_2011_10_24'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_11_01', u'properties': {u'system:time_end': 1321488000000, u'system:time_start': 1320105600000, u'system:index': u'MCD43A4_005_2011_11_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_11_09', u'properties': {u'system:time_end': 1322179200000, u'system:time_start': 1320796800000, u'system:index': u'MCD43A4_005_2011_11_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_11_17', u'properties': {u'system:time_end': 1322870400000, u'system:time_start': 1321488000000, u'system:index': u'MCD43A4_005_2011_11_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_11_25', u'properties': {u'system:time_end': 1323561600000, u'system:time_start': 1322179200000, u'system:index': u'MCD43A4_005_2011_11_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_12_03', u'properties': {u'system:time_end': 1324252800000, u'system:time_start': 1322870400000, u'system:index': u'MCD43A4_005_2011_12_03'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_12_11', u'properties': {u'system:time_end': 1324944000000, u'system:time_start': 1323561600000, u'system:index': u'MCD43A4_005_2011_12_11'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_12_19', u'properties': {u'system:time_end': 1325635200000, u'system:time_start': 1324252800000, u'system:index': u'MCD43A4_005_2011_12_19'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2011_12_27', u'properties': {u'system:time_end': 1326326400000, u'system:time_start': 1324944000000, u'system:index': u'MCD43A4_005_2011_12_27'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_01_01', u'properties': {u'system:time_end': 1326758400000, u'system:time_start': 1325376000000, u'system:index': u'MCD43A4_005_2012_01_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_01_09', u'properties': {u'system:time_end': 1327449600000, u'system:time_start': 1326067200000, u'system:index': u'MCD43A4_005_2012_01_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_01_17', u'properties': {u'system:time_end': 1328140800000, u'system:time_start': 1326758400000, u'system:index': u'MCD43A4_005_2012_01_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_01_25', u'properties': {u'system:time_end': 1328832000000, u'system:time_start': 1327449600000, u'system:index': u'MCD43A4_005_2012_01_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_02_02', u'properties': {u'system:time_end': 1329523200000, u'system:time_start': 1328140800000, u'system:index': u'MCD43A4_005_2012_02_02'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_02_10', u'properties': {u'system:time_end': 1330214400000, u'system:time_start': 1328832000000, u'system:index': u'MCD43A4_005_2012_02_10'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_02_18', u'properties': {u'system:time_end': 1330905600000, u'system:time_start': 1329523200000, u'system:index': u'MCD43A4_005_2012_02_18'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_02_26', u'properties': {u'system:time_end': 1331596800000, u'system:time_start': 1330214400000, u'system:index': u'MCD43A4_005_2012_02_26'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_03_05', u'properties': {u'system:time_end': 1332288000000, u'system:time_start': 1330905600000, u'system:index': u'MCD43A4_005_2012_03_05'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_03_13', u'properties': {u'system:time_end': 1332979200000, u'system:time_start': 1331596800000, u'system:index': u'MCD43A4_005_2012_03_13'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_03_21', u'properties': {u'system:time_end': 1333670400000, u'system:time_start': 1332288000000, u'system:index': u'MCD43A4_005_2012_03_21'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_03_29', u'properties': {u'system:time_end': 1334361600000, u'system:time_start': 1332979200000, u'system:index': u'MCD43A4_005_2012_03_29'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_04_06', u'properties': {u'system:time_end': 1335052800000, u'system:time_start': 1333670400000, u'system:index': u'MCD43A4_005_2012_04_06'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_04_14', u'properties': {u'system:time_end': 1335744000000, u'system:time_start': 1334361600000, u'system:index': u'MCD43A4_005_2012_04_14'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_04_22', u'properties': {u'system:time_end': 1336435200000, u'system:time_start': 1335052800000, u'system:index': u'MCD43A4_005_2012_04_22'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_04_30', u'properties': {u'system:time_end': 1337126400000, u'system:time_start': 1335744000000, u'system:index': u'MCD43A4_005_2012_04_30'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_05_08', u'properties': {u'system:time_end': 1337817600000, u'system:time_start': 1336435200000, u'system:index': u'MCD43A4_005_2012_05_08'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_05_16', u'properties': {u'system:time_end': 1338508800000, u'system:time_start': 1337126400000, u'system:index': u'MCD43A4_005_2012_05_16'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_05_24', u'properties': {u'system:time_end': 1339200000000, u'system:time_start': 1337817600000, u'system:index': u'MCD43A4_005_2012_05_24'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_06_01', u'properties': {u'system:time_end': 1339891200000, u'system:time_start': 1338508800000, u'system:index': u'MCD43A4_005_2012_06_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_06_09', u'properties': {u'system:time_end': 1340582400000, u'system:time_start': 1339200000000, u'system:index': u'MCD43A4_005_2012_06_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_06_17', u'properties': {u'system:time_end': 1341273600000, u'system:time_start': 1339891200000, u'system:index': u'MCD43A4_005_2012_06_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_06_25', u'properties': {u'system:time_end': 1341964800000, u'system:time_start': 1340582400000, u'system:index': u'MCD43A4_005_2012_06_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_07_03', u'properties': {u'system:time_end': 1342656000000, u'system:time_start': 1341273600000, u'system:index': u'MCD43A4_005_2012_07_03'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_07_11', u'properties': {u'system:time_end': 1343347200000, u'system:time_start': 1341964800000, u'system:index': u'MCD43A4_005_2012_07_11'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_07_19', u'properties': {u'system:time_end': 1344038400000, u'system:time_start': 1342656000000, u'system:index': u'MCD43A4_005_2012_07_19'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_07_27', u'properties': {u'system:time_end': 1344729600000, u'system:time_start': 1343347200000, u'system:index': u'MCD43A4_005_2012_07_27'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_08_04', u'properties': {u'system:time_end': 1345420800000, u'system:time_start': 1344038400000, u'system:index': u'MCD43A4_005_2012_08_04'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_08_12', u'properties': {u'system:time_end': 1346112000000, u'system:time_start': 1344729600000, u'system:index': u'MCD43A4_005_2012_08_12'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_08_20', u'properties': {u'system:time_end': 1346803200000, u'system:time_start': 1345420800000, u'system:index': u'MCD43A4_005_2012_08_20'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_08_28', u'properties': {u'system:time_end': 1347494400000, u'system:time_start': 1346112000000, u'system:index': u'MCD43A4_005_2012_08_28'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_09_05', u'properties': {u'system:time_end': 1348185600000, u'system:time_start': 1346803200000, u'system:index': u'MCD43A4_005_2012_09_05'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_09_13', u'properties': {u'system:time_end': 1348876800000, u'system:time_start': 1347494400000, u'system:index': u'MCD43A4_005_2012_09_13'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_09_21', u'properties': {u'system:time_end': 1349568000000, u'system:time_start': 1348185600000, u'system:index': u'MCD43A4_005_2012_09_21'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_09_29', u'properties': {u'system:time_end': 1350259200000, u'system:time_start': 1348876800000, u'system:index': u'MCD43A4_005_2012_09_29'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_10_07', u'properties': {u'system:time_end': 1350950400000, u'system:time_start': 1349568000000, u'system:index': u'MCD43A4_005_2012_10_07'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_10_15', u'properties': {u'system:time_end': 1351641600000, u'system:time_start': 1350259200000, u'system:index': u'MCD43A4_005_2012_10_15'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_10_23', u'properties': {u'system:time_end': 1352332800000, u'system:time_start': 1350950400000, u'system:index': u'MCD43A4_005_2012_10_23'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_10_31', u'properties': {u'system:time_end': 1353024000000, u'system:time_start': 1351641600000, u'system:index': u'MCD43A4_005_2012_10_31'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_11_08', u'properties': {u'system:time_end': 1353715200000, u'system:time_start': 1352332800000, u'system:index': u'MCD43A4_005_2012_11_08'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_11_16', u'properties': {u'system:time_end': 1354406400000, u'system:time_start': 1353024000000, u'system:index': u'MCD43A4_005_2012_11_16'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_11_24', u'properties': {u'system:time_end': 1355097600000, u'system:time_start': 1353715200000, u'system:index': u'MCD43A4_005_2012_11_24'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_12_02', u'properties': {u'system:time_end': 1355788800000, u'system:time_start': 1354406400000, u'system:index': u'MCD43A4_005_2012_12_02'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_12_10', u'properties': {u'system:time_end': 1356480000000, u'system:time_start': 1355097600000, u'system:index': u'MCD43A4_005_2012_12_10'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_12_18', u'properties': {u'system:time_end': 1357171200000, u'system:time_start': 1355788800000, u'system:index': u'MCD43A4_005_2012_12_18'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2012_12_26', u'properties': {u'system:time_end': 1357862400000, u'system:time_start': 1356480000000, u'system:index': u'MCD43A4_005_2012_12_26'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_01_01', u'properties': {u'system:time_end': 1358380800000, u'system:time_start': 1356998400000, u'system:index': u'MCD43A4_005_2013_01_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_01_09', u'properties': {u'system:time_end': 1359072000000, u'system:time_start': 1357689600000, u'system:index': u'MCD43A4_005_2013_01_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_01_17', u'properties': {u'system:time_end': 1359763200000, u'system:time_start': 1358380800000, u'system:index': u'MCD43A4_005_2013_01_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_01_25', u'properties': {u'system:time_end': 1360454400000, u'system:time_start': 1359072000000, u'system:index': u'MCD43A4_005_2013_01_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_02_02', u'properties': {u'system:time_end': 1361145600000, u'system:time_start': 1359763200000, u'system:index': u'MCD43A4_005_2013_02_02'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_02_10', u'properties': {u'system:time_end': 1361836800000, u'system:time_start': 1360454400000, u'system:index': u'MCD43A4_005_2013_02_10'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_02_18', u'properties': {u'system:time_end': 1362528000000, u'system:time_start': 1361145600000, u'system:index': u'MCD43A4_005_2013_02_18'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_02_26', u'properties': {u'system:time_end': 1363219200000, u'system:time_start': 1361836800000, u'system:index': u'MCD43A4_005_2013_02_26'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_03_06', u'properties': {u'system:time_end': 1363910400000, u'system:time_start': 1362528000000, u'system:index': u'MCD43A4_005_2013_03_06'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_03_14', u'properties': {u'system:time_end': 1364601600000, u'system:time_start': 1363219200000, u'system:index': u'MCD43A4_005_2013_03_14'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_03_22', u'properties': {u'system:time_end': 1365292800000, u'system:time_start': 1363910400000, u'system:index': u'MCD43A4_005_2013_03_22'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_03_30', u'properties': {u'system:time_end': 1365984000000, u'system:time_start': 1364601600000, u'system:index': u'MCD43A4_005_2013_03_30'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_04_07', u'properties': {u'system:time_end': 1366675200000, u'system:time_start': 1365292800000, u'system:index': u'MCD43A4_005_2013_04_07'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_04_15', u'properties': {u'system:time_end': 1367366400000, u'system:time_start': 1365984000000, u'system:index': u'MCD43A4_005_2013_04_15'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_04_23', u'properties': {u'system:time_end': 1368057600000, u'system:time_start': 1366675200000, u'system:index': u'MCD43A4_005_2013_04_23'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_05_01', u'properties': {u'system:time_end': 1368748800000, u'system:time_start': 1367366400000, u'system:index': u'MCD43A4_005_2013_05_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_05_09', u'properties': {u'system:time_end': 1369440000000, u'system:time_start': 1368057600000, u'system:index': u'MCD43A4_005_2013_05_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_05_17', u'properties': {u'system:time_end': 1370131200000, u'system:time_start': 1368748800000, u'system:index': u'MCD43A4_005_2013_05_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_05_25', u'properties': {u'system:time_end': 1370822400000, u'system:time_start': 1369440000000, u'system:index': u'MCD43A4_005_2013_05_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_06_02', u'properties': {u'system:time_end': 1371513600000, u'system:time_start': 1370131200000, u'system:index': u'MCD43A4_005_2013_06_02'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_06_10', u'properties': {u'system:time_end': 1372204800000, u'system:time_start': 1370822400000, u'system:index': u'MCD43A4_005_2013_06_10'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_06_18', u'properties': {u'system:time_end': 1372896000000, u'system:time_start': 1371513600000, u'system:index': u'MCD43A4_005_2013_06_18'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_06_26', u'properties': {u'system:time_end': 1373587200000, u'system:time_start': 1372204800000, u'system:index': u'MCD43A4_005_2013_06_26'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_07_04', u'properties': {u'system:time_end': 1374278400000, u'system:time_start': 1372896000000, u'system:index': u'MCD43A4_005_2013_07_04'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_07_12', u'properties': {u'system:time_end': 1374969600000, u'system:time_start': 1373587200000, u'system:index': u'MCD43A4_005_2013_07_12'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_07_20', u'properties': {u'system:time_end': 1375660800000, u'system:time_start': 1374278400000, u'system:index': u'MCD43A4_005_2013_07_20'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_07_28', u'properties': {u'system:time_end': 1376352000000, u'system:time_start': 1374969600000, u'system:index': u'MCD43A4_005_2013_07_28'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_08_05', u'properties': {u'system:time_end': 1377043200000, u'system:time_start': 1375660800000, u'system:index': u'MCD43A4_005_2013_08_05'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_08_13', u'properties': {u'system:time_end': 1377734400000, u'system:time_start': 1376352000000, u'system:index': u'MCD43A4_005_2013_08_13'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_08_21', u'properties': {u'system:time_end': 1378425600000, u'system:time_start': 1377043200000, u'system:index': u'MCD43A4_005_2013_08_21'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_08_29', u'properties': {u'system:time_end': 1379116800000, u'system:time_start': 1377734400000, u'system:index': u'MCD43A4_005_2013_08_29'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_09_06', u'properties': {u'system:time_end': 1379808000000, u'system:time_start': 1378425600000, u'system:index': u'MCD43A4_005_2013_09_06'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_09_14', u'properties': {u'system:time_end': 1380499200000, u'system:time_start': 1379116800000, u'system:index': u'MCD43A4_005_2013_09_14'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_09_22', u'properties': {u'system:time_end': 1381190400000, u'system:time_start': 1379808000000, u'system:index': u'MCD43A4_005_2013_09_22'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_09_30', u'properties': {u'system:time_end': 1381881600000, u'system:time_start': 1380499200000, u'system:index': u'MCD43A4_005_2013_09_30'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_10_08', u'properties': {u'system:time_end': 1382572800000, u'system:time_start': 1381190400000, u'system:index': u'MCD43A4_005_2013_10_08'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_10_16', u'properties': {u'system:time_end': 1383264000000, u'system:time_start': 1381881600000, u'system:index': u'MCD43A4_005_2013_10_16'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_10_24', u'properties': {u'system:time_end': 1383955200000, u'system:time_start': 1382572800000, u'system:index': u'MCD43A4_005_2013_10_24'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_11_01', u'properties': {u'system:time_end': 1384646400000, u'system:time_start': 1383264000000, u'system:index': u'MCD43A4_005_2013_11_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_11_09', u'properties': {u'system:time_end': 1385337600000, u'system:time_start': 1383955200000, u'system:index': u'MCD43A4_005_2013_11_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_11_17', u'properties': {u'system:time_end': 1386028800000, u'system:time_start': 1384646400000, u'system:index': u'MCD43A4_005_2013_11_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_11_25', u'properties': {u'system:time_end': 1386720000000, u'system:time_start': 1385337600000, u'system:index': u'MCD43A4_005_2013_11_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_12_03', u'properties': {u'system:time_end': 1387411200000, u'system:time_start': 1386028800000, u'system:index': u'MCD43A4_005_2013_12_03'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_12_11', u'properties': {u'system:time_end': 1388102400000, u'system:time_start': 1386720000000, u'system:index': u'MCD43A4_005_2013_12_11'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_12_19', u'properties': {u'system:time_end': 1388793600000, u'system:time_start': 1387411200000, u'system:index': u'MCD43A4_005_2013_12_19'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2013_12_27', u'properties': {u'system:time_end': 1389484800000, u'system:time_start': 1388102400000, u'system:index': u'MCD43A4_005_2013_12_27'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_01_01', u'properties': {u'system:time_end': 1389916800000, u'system:time_start': 1388534400000, u'system:index': u'MCD43A4_005_2014_01_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_01_09', u'properties': {u'system:time_end': 1390608000000, u'system:time_start': 1389225600000, u'system:index': u'MCD43A4_005_2014_01_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_01_17', u'properties': {u'system:time_end': 1391299200000, u'system:time_start': 1389916800000, u'system:index': u'MCD43A4_005_2014_01_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_01_25', u'properties': {u'system:time_end': 1391990400000, u'system:time_start': 1390608000000, u'system:index': u'MCD43A4_005_2014_01_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_02_02', u'properties': {u'system:time_end': 1392681600000, u'system:time_start': 1391299200000, u'system:index': u'MCD43A4_005_2014_02_02'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_02_10', u'properties': {u'system:time_end': 1393372800000, u'system:time_start': 1391990400000, u'system:index': u'MCD43A4_005_2014_02_10'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_02_18', u'properties': {u'system:time_end': 1394064000000, u'system:time_start': 1392681600000, u'system:index': u'MCD43A4_005_2014_02_18'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_02_26', u'properties': {u'system:time_end': 1394755200000, u'system:time_start': 1393372800000, u'system:index': u'MCD43A4_005_2014_02_26'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_03_06', u'properties': {u'system:time_end': 1395446400000, u'system:time_start': 1394064000000, u'system:index': u'MCD43A4_005_2014_03_06'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_03_14', u'properties': {u'system:time_end': 1396137600000, u'system:time_start': 1394755200000, u'system:index': u'MCD43A4_005_2014_03_14'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_03_22', u'properties': {u'system:time_end': 1396828800000, u'system:time_start': 1395446400000, u'system:index': u'MCD43A4_005_2014_03_22'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_03_30', u'properties': {u'system:time_end': 1397520000000, u'system:time_start': 1396137600000, u'system:index': u'MCD43A4_005_2014_03_30'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_04_07', u'properties': {u'system:time_end': 1398211200000, u'system:time_start': 1396828800000, u'system:index': u'MCD43A4_005_2014_04_07'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_04_15', u'properties': {u'system:time_end': 1398902400000, u'system:time_start': 1397520000000, u'system:index': u'MCD43A4_005_2014_04_15'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_04_23', u'properties': {u'system:time_end': 1399593600000, u'system:time_start': 1398211200000, u'system:index': u'MCD43A4_005_2014_04_23'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_05_01', u'properties': {u'system:time_end': 1400284800000, u'system:time_start': 1398902400000, u'system:index': u'MCD43A4_005_2014_05_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_05_09', u'properties': {u'system:time_end': 1400976000000, u'system:time_start': 1399593600000, u'system:index': u'MCD43A4_005_2014_05_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_05_17', u'properties': {u'system:time_end': 1401667200000, u'system:time_start': 1400284800000, u'system:index': u'MCD43A4_005_2014_05_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_05_25', u'properties': {u'system:time_end': 1402358400000, u'system:time_start': 1400976000000, u'system:index': u'MCD43A4_005_2014_05_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_06_02', u'properties': {u'system:time_end': 1403049600000, u'system:time_start': 1401667200000, u'system:index': u'MCD43A4_005_2014_06_02'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_06_10', u'properties': {u'system:time_end': 1403740800000, u'system:time_start': 1402358400000, u'system:index': u'MCD43A4_005_2014_06_10'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_06_18', u'properties': {u'system:time_end': 1404432000000, u'system:time_start': 1403049600000, u'system:index': u'MCD43A4_005_2014_06_18'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_06_26', u'properties': {u'system:time_end': 1405123200000, u'system:time_start': 1403740800000, u'system:index': u'MCD43A4_005_2014_06_26'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_07_04', u'properties': {u'system:time_end': 1405814400000, u'system:time_start': 1404432000000, u'system:index': u'MCD43A4_005_2014_07_04'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_07_12', u'properties': {u'system:time_end': 1406505600000, u'system:time_start': 1405123200000, u'system:index': u'MCD43A4_005_2014_07_12'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_07_20', u'properties': {u'system:time_end': 1407196800000, u'system:time_start': 1405814400000, u'system:index': u'MCD43A4_005_2014_07_20'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_07_28', u'properties': {u'system:time_end': 1407888000000, u'system:time_start': 1406505600000, u'system:index': u'MCD43A4_005_2014_07_28'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_08_05', u'properties': {u'system:time_end': 1408579200000, u'system:time_start': 1407196800000, u'system:index': u'MCD43A4_005_2014_08_05'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_08_13', u'properties': {u'system:time_end': 1409270400000, u'system:time_start': 1407888000000, u'system:index': u'MCD43A4_005_2014_08_13'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_08_21', u'properties': {u'system:time_end': 1409961600000, u'system:time_start': 1408579200000, u'system:index': u'MCD43A4_005_2014_08_21'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_08_29', u'properties': {u'system:time_end': 1410652800000, u'system:time_start': 1409270400000, u'system:index': u'MCD43A4_005_2014_08_29'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_09_06', u'properties': {u'system:time_end': 1411344000000, u'system:time_start': 1409961600000, u'system:index': u'MCD43A4_005_2014_09_06'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_09_14', u'properties': {u'system:time_end': 1412035200000, u'system:time_start': 1410652800000, u'system:index': u'MCD43A4_005_2014_09_14'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_09_22', u'properties': {u'system:time_end': 1412726400000, u'system:time_start': 1411344000000, u'system:index': u'MCD43A4_005_2014_09_22'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_09_30', u'properties': {u'system:time_end': 1413417600000, u'system:time_start': 1412035200000, u'system:index': u'MCD43A4_005_2014_09_30'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_10_08', u'properties': {u'system:time_end': 1414108800000, u'system:time_start': 1412726400000, u'system:index': u'MCD43A4_005_2014_10_08'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_10_16', u'properties': {u'system:time_end': 1414800000000, u'system:time_start': 1413417600000, u'system:index': u'MCD43A4_005_2014_10_16'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_10_24', u'properties': {u'system:time_end': 1415491200000, u'system:time_start': 1414108800000, u'system:index': u'MCD43A4_005_2014_10_24'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_11_01', u'properties': {u'system:time_end': 1416182400000, u'system:time_start': 1414800000000, u'system:index': u'MCD43A4_005_2014_11_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_11_09', u'properties': {u'system:time_end': 1416873600000, u'system:time_start': 1415491200000, u'system:index': u'MCD43A4_005_2014_11_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_11_17', u'properties': {u'system:time_end': 1417564800000, u'system:time_start': 1416182400000, u'system:index': u'MCD43A4_005_2014_11_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_11_25', u'properties': {u'system:time_end': 1418256000000, u'system:time_start': 1416873600000, u'system:index': u'MCD43A4_005_2014_11_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_12_03', u'properties': {u'system:time_end': 1418947200000, u'system:time_start': 1417564800000, u'system:index': u'MCD43A4_005_2014_12_03'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_12_11', u'properties': {u'system:time_end': 1419638400000, u'system:time_start': 1418256000000, u'system:index': u'MCD43A4_005_2014_12_11'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_12_19', u'properties': {u'system:time_end': 1420329600000, u'system:time_start': 1418947200000, u'system:index': u'MCD43A4_005_2014_12_19'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2014_12_27', u'properties': {u'system:time_end': 1421020800000, u'system:time_start': 1419638400000, u'system:index': u'MCD43A4_005_2014_12_27'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_01_01', u'properties': {u'system:time_end': 1421452800000, u'system:time_start': 1420070400000, u'system:index': u'MCD43A4_005_2015_01_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_01_09', u'properties': {u'system:time_end': 1422144000000, u'system:time_start': 1420761600000, u'system:index': u'MCD43A4_005_2015_01_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_01_17', u'properties': {u'system:time_end': 1422835200000, u'system:time_start': 1421452800000, u'system:index': u'MCD43A4_005_2015_01_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_01_25', u'properties': {u'system:time_end': 1423526400000, u'system:time_start': 1422144000000, u'system:index': u'MCD43A4_005_2015_01_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_02_02', u'properties': {u'system:time_end': 1424217600000, u'system:time_start': 1422835200000, u'system:index': u'MCD43A4_005_2015_02_02'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_02_10', u'properties': {u'system:time_end': 1424908800000, u'system:time_start': 1423526400000, u'system:index': u'MCD43A4_005_2015_02_10'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_02_18', u'properties': {u'system:time_end': 1425600000000, u'system:time_start': 1424217600000, u'system:index': u'MCD43A4_005_2015_02_18'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_02_26', u'properties': {u'system:time_end': 1426291200000, u'system:time_start': 1424908800000, u'system:index': u'MCD43A4_005_2015_02_26'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_03_06', u'properties': {u'system:time_end': 1426982400000, u'system:time_start': 1425600000000, u'system:index': u'MCD43A4_005_2015_03_06'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_03_14', u'properties': {u'system:time_end': 1427673600000, u'system:time_start': 1426291200000, u'system:index': u'MCD43A4_005_2015_03_14'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_03_22', u'properties': {u'system:time_end': 1428364800000, u'system:time_start': 1426982400000, u'system:index': u'MCD43A4_005_2015_03_22'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_03_30', u'properties': {u'system:time_end': 1429056000000, u'system:time_start': 1427673600000, u'system:index': u'MCD43A4_005_2015_03_30'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_04_07', u'properties': {u'system:time_end': 1429747200000, u'system:time_start': 1428364800000, u'system:index': u'MCD43A4_005_2015_04_07'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_04_15', u'properties': {u'system:time_end': 1430438400000, u'system:time_start': 1429056000000, u'system:index': u'MCD43A4_005_2015_04_15'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_04_23', u'properties': {u'system:time_end': 1431129600000, u'system:time_start': 1429747200000, u'system:index': u'MCD43A4_005_2015_04_23'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_05_01', u'properties': {u'system:time_end': 1431820800000, u'system:time_start': 1430438400000, u'system:index': u'MCD43A4_005_2015_05_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_05_09', u'properties': {u'system:time_end': 1432512000000, u'system:time_start': 1431129600000, u'system:index': u'MCD43A4_005_2015_05_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_05_17', u'properties': {u'system:time_end': 1433203200000, u'system:time_start': 1431820800000, u'system:index': u'MCD43A4_005_2015_05_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_05_25', u'properties': {u'system:time_end': 1433894400000, u'system:time_start': 1432512000000, u'system:index': u'MCD43A4_005_2015_05_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_06_02', u'properties': {u'system:time_end': 1434585600000, u'system:time_start': 1433203200000, u'system:index': u'MCD43A4_005_2015_06_02'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_06_10', u'properties': {u'system:time_end': 1435276800000, u'system:time_start': 1433894400000, u'system:index': u'MCD43A4_005_2015_06_10'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_06_18', u'properties': {u'system:time_end': 1435968000000, u'system:time_start': 1434585600000, u'system:index': u'MCD43A4_005_2015_06_18'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_06_26', u'properties': {u'system:time_end': 1436659200000, u'system:time_start': 1435276800000, u'system:index': u'MCD43A4_005_2015_06_26'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_07_04', u'properties': {u'system:time_end': 1437350400000, u'system:time_start': 1435968000000, u'system:index': u'MCD43A4_005_2015_07_04'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_07_12', u'properties': {u'system:time_end': 1438041600000, u'system:time_start': 1436659200000, u'system:index': u'MCD43A4_005_2015_07_12'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_07_20', u'properties': {u'system:time_end': 1438732800000, u'system:time_start': 1437350400000, u'system:index': u'MCD43A4_005_2015_07_20'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_07_28', u'properties': {u'system:time_end': 1439424000000, u'system:time_start': 1438041600000, u'system:index': u'MCD43A4_005_2015_07_28'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_08_05', u'properties': {u'system:time_end': 1440115200000, u'system:time_start': 1438732800000, u'system:index': u'MCD43A4_005_2015_08_05'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_08_13', u'properties': {u'system:time_end': 1440806400000, u'system:time_start': 1439424000000, u'system:index': u'MCD43A4_005_2015_08_13'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_08_21', u'properties': {u'system:time_end': 1441497600000, u'system:time_start': 1440115200000, u'system:index': u'MCD43A4_005_2015_08_21'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_08_29', u'properties': {u'system:time_end': 1442188800000, u'system:time_start': 1440806400000, u'system:index': u'MCD43A4_005_2015_08_29'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_09_06', u'properties': {u'system:time_end': 1442880000000, u'system:time_start': 1441497600000, u'system:index': u'MCD43A4_005_2015_09_06'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_09_14', u'properties': {u'system:time_end': 1443571200000, u'system:time_start': 1442188800000, u'system:index': u'MCD43A4_005_2015_09_14'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_09_22', u'properties': {u'system:time_end': 1444262400000, u'system:time_start': 1442880000000, u'system:index': u'MCD43A4_005_2015_09_22'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_09_30', u'properties': {u'system:time_end': 1444953600000, u'system:time_start': 1443571200000, u'system:index': u'MCD43A4_005_2015_09_30'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_10_08', u'properties': {u'system:time_end': 1445644800000, u'system:time_start': 1444262400000, u'system:index': u'MCD43A4_005_2015_10_08'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_10_16', u'properties': {u'system:time_end': 1446336000000, u'system:time_start': 1444953600000, u'system:index': u'MCD43A4_005_2015_10_16'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_10_24', u'properties': {u'system:time_end': 1447027200000, u'system:time_start': 1445644800000, u'system:index': u'MCD43A4_005_2015_10_24'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_11_01', u'properties': {u'system:time_end': 1447718400000, u'system:time_start': 1446336000000, u'system:index': u'MCD43A4_005_2015_11_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_11_09', u'properties': {u'system:time_end': 1448409600000, u'system:time_start': 1447027200000, u'system:index': u'MCD43A4_005_2015_11_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_11_17', u'properties': {u'system:time_end': 1449100800000, u'system:time_start': 1447718400000, u'system:index': u'MCD43A4_005_2015_11_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_11_25', u'properties': {u'system:time_end': 1449792000000, u'system:time_start': 1448409600000, u'system:index': u'MCD43A4_005_2015_11_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_12_03', u'properties': {u'system:time_end': 1450483200000, u'system:time_start': 1449100800000, u'system:index': u'MCD43A4_005_2015_12_03'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_12_11', u'properties': {u'system:time_end': 1451174400000, u'system:time_start': 1449792000000, u'system:index': u'MCD43A4_005_2015_12_11'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_12_19', u'properties': {u'system:time_end': 1451865600000, u'system:time_start': 1450483200000, u'system:index': u'MCD43A4_005_2015_12_19'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2015_12_27', u'properties': {u'system:time_end': 1452556800000, u'system:time_start': 1451174400000, u'system:index': u'MCD43A4_005_2015_12_27'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_01_01', u'properties': {u'system:time_end': 1452988800000, u'system:time_start': 1451606400000, u'system:index': u'MCD43A4_005_2016_01_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_01_09', u'properties': {u'system:time_end': 1453680000000, u'system:time_start': 1452297600000, u'system:index': u'MCD43A4_005_2016_01_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_01_17', u'properties': {u'system:time_end': 1454371200000, u'system:time_start': 1452988800000, u'system:index': u'MCD43A4_005_2016_01_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_01_25', u'properties': {u'system:time_end': 1455062400000, u'system:time_start': 1453680000000, u'system:index': u'MCD43A4_005_2016_01_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_02_02', u'properties': {u'system:time_end': 1455753600000, u'system:time_start': 1454371200000, u'system:index': u'MCD43A4_005_2016_02_02'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_02_10', u'properties': {u'system:time_end': 1456444800000, u'system:time_start': 1455062400000, u'system:index': u'MCD43A4_005_2016_02_10'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_02_18', u'properties': {u'system:time_end': 1457136000000, u'system:time_start': 1455753600000, u'system:index': u'MCD43A4_005_2016_02_18'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_02_26', u'properties': {u'system:time_end': 1457827200000, u'system:time_start': 1456444800000, u'system:index': u'MCD43A4_005_2016_02_26'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_03_05', u'properties': {u'system:time_end': 1458518400000, u'system:time_start': 1457136000000, u'system:index': u'MCD43A4_005_2016_03_05'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_03_13', u'properties': {u'system:time_end': 1459209600000, u'system:time_start': 1457827200000, u'system:index': u'MCD43A4_005_2016_03_13'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_03_21', u'properties': {u'system:time_end': 1459900800000, u'system:time_start': 1458518400000, u'system:index': u'MCD43A4_005_2016_03_21'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_03_29', u'properties': {u'system:time_end': 1460592000000, u'system:time_start': 1459209600000, u'system:index': u'MCD43A4_005_2016_03_29'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_04_06', u'properties': {u'system:time_end': 1461283200000, u'system:time_start': 1459900800000, u'system:index': u'MCD43A4_005_2016_04_06'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_04_14', u'properties': {u'system:time_end': 1461974400000, u'system:time_start': 1460592000000, u'system:index': u'MCD43A4_005_2016_04_14'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_04_22', u'properties': {u'system:time_end': 1462665600000, u'system:time_start': 1461283200000, u'system:index': u'MCD43A4_005_2016_04_22'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_04_30', u'properties': {u'system:time_end': 1463356800000, u'system:time_start': 1461974400000, u'system:index': u'MCD43A4_005_2016_04_30'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_05_08', u'properties': {u'system:time_end': 1464048000000, u'system:time_start': 1462665600000, u'system:index': u'MCD43A4_005_2016_05_08'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_05_16', u'properties': {u'system:time_end': 1464739200000, u'system:time_start': 1463356800000, u'system:index': u'MCD43A4_005_2016_05_16'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_05_24', u'properties': {u'system:time_end': 1465430400000, u'system:time_start': 1464048000000, u'system:index': u'MCD43A4_005_2016_05_24'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_06_01', u'properties': {u'system:time_end': 1466121600000, u'system:time_start': 1464739200000, u'system:index': u'MCD43A4_005_2016_06_01'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_06_09', u'properties': {u'system:time_end': 1466812800000, u'system:time_start': 1465430400000, u'system:index': u'MCD43A4_005_2016_06_09'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_06_17', u'properties': {u'system:time_end': 1467504000000, u'system:time_start': 1466121600000, u'system:index': u'MCD43A4_005_2016_06_17'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_06_25', u'properties': {u'system:time_end': 1468195200000, u'system:time_start': 1466812800000, u'system:index': u'MCD43A4_005_2016_06_25'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_07_03', u'properties': {u'system:time_end': 1468886400000, u'system:time_start': 1467504000000, u'system:index': u'MCD43A4_005_2016_07_03'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_07_11', u'properties': {u'system:time_end': 1469577600000, u'system:time_start': 1468195200000, u'system:index': u'MCD43A4_005_2016_07_11'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_07_19', u'properties': {u'system:time_end': 1470268800000, u'system:time_start': 1468886400000, u'system:index': u'MCD43A4_005_2016_07_19'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_07_27', u'properties': {u'system:time_end': 1470960000000, u'system:time_start': 1469577600000, u'system:index': u'MCD43A4_005_2016_07_27'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_08_04', u'properties': {u'system:time_end': 1471651200000, u'system:time_start': 1470268800000, u'system:index': u'MCD43A4_005_2016_08_04'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_08_12', u'properties': {u'system:time_end': 1472342400000, u'system:time_start': 1470960000000, u'system:index': u'MCD43A4_005_2016_08_12'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_08_20', u'properties': {u'system:time_end': 1473033600000, u'system:time_start': 1471651200000, u'system:index': u'MCD43A4_005_2016_08_20'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_08_28', u'properties': {u'system:time_end': 1473724800000, u'system:time_start': 1472342400000, u'system:index': u'MCD43A4_005_2016_08_28'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_09_05', u'properties': {u'system:time_end': 1474416000000, u'system:time_start': 1473033600000, u'system:index': u'MCD43A4_005_2016_09_05'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_09_13', u'properties': {u'system:time_end': 1475107200000, u'system:time_start': 1473724800000, u'system:index': u'MCD43A4_005_2016_09_13'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_09_21', u'properties': {u'system:time_end': 1475798400000, u'system:time_start': 1474416000000, u'system:index': u'MCD43A4_005_2016_09_21'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_09_29', u'properties': {u'system:time_end': 1476489600000, u'system:time_start': 1475107200000, u'system:index': u'MCD43A4_005_2016_09_29'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_10_07', u'properties': {u'system:time_end': 1477180800000, u'system:time_start': 1475798400000, u'system:index': u'MCD43A4_005_2016_10_07'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_10_15', u'properties': {u'system:time_end': 1477872000000, u'system:time_start': 1476489600000, u'system:index': u'MCD43A4_005_2016_10_15'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_10_23', u'properties': {u'system:time_end': 1478563200000, u'system:time_start': 1477180800000, u'system:index': u'MCD43A4_005_2016_10_23'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_10_31', u'properties': {u'system:time_end': 1479254400000, u'system:time_start': 1477872000000, u'system:index': u'MCD43A4_005_2016_10_31'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_11_08', u'properties': {u'system:time_end': 1479945600000, u'system:time_start': 1478563200000, u'system:index': u'MCD43A4_005_2016_11_08'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_11_16', u'properties': {u'system:time_end': 1480636800000, u'system:time_start': 1479254400000, u'system:index': u'MCD43A4_005_2016_11_16'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_11_24', u'properties': {u'system:time_end': 1481328000000, u'system:time_start': 1479945600000, u'system:index': u'MCD43A4_005_2016_11_24'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_12_02', u'properties': {u'system:time_end': 1482019200000, u'system:time_start': 1480636800000, u'system:index': u'MCD43A4_005_2016_12_02'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_12_10', u'properties': {u'system:time_end': 1482710400000, u'system:time_start': 1481328000000, u'system:index': u'MCD43A4_005_2016_12_10'}}, {u'bands': [{u'crs': u'SR-ORG:6974', u'crs_transform': [463.3127165279165, 0.0, -20015109.353988, 0.0, -463.3127165274999, 10007554.676994], u'id': u'NDVI', u'data_type': {u'max': 1.0, u'type': u'PixelType', u'precision': u'float', u'min': -1.0}}], u'version': 1484861502751000, u'type': u'Image', u'id': u'MODIS/MCD43A4_NDVI/MCD43A4_005_2016_12_18', u'properties': {u'system:time_end': 1483401600000, u'system:time_start': 1482019200000, u'system:index': u'MCD43A4_005_2016_12_18'}}]

In [16]:
mean_example()


{u'NDVI': 0.4914328760105716}
{u'NDVI': 0.26862168312072754}
{u'NDVI': 0.7924338579177856}

In [ ]: